2022-02-03 23:58:40 +00:00
|
|
|
.App {
|
2022-02-04 01:14:34 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
2022-02-03 23:58:40 +00:00
|
|
|
}
|
2022-10-22 21:21:03 +00:00
|
|
|
|
|
|
|
.low-severity {
|
|
|
|
background-color: #98fb98
|
|
|
|
}
|
|
|
|
|
|
|
|
.med-severity {
|
|
|
|
background-color: #eee8aa
|
|
|
|
}
|
|
|
|
|
|
|
|
.high-severity {
|
|
|
|
background-color: #f08080
|
|
|
|
}
|
|
|
|
|
2022-10-23 01:13:52 +00:00
|
|
|
.severity-label {
|
|
|
|
border-radius: 10px;
|
|
|
|
text-align: center;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nws-card {
|
2022-10-22 21:21:03 +00:00
|
|
|
border-radius: 20px;
|
2022-10-23 01:13:52 +00:00
|
|
|
background-color: #eee;
|
2022-10-22 21:21:03 +00:00
|
|
|
padding: .75rem;
|
|
|
|
}
|
|
|
|
|
2022-10-23 01:13:52 +00:00
|
|
|
|