mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-18 13:39:57 -04:00
Since we’ve removed the table of notifications from the single notification page there’s no way of knowing the status of a notification. This re-adds it in a way that’s similar to how it looks on inbound messages.
19 lines
220 B
SCSS
19 lines
220 B
SCSS
.notification-status {
|
|
|
|
@include core-16;
|
|
color: $secondary-text-colour;
|
|
margin-top: -$gutter-half;
|
|
|
|
&.error {
|
|
|
|
color: $error-colour;
|
|
font-weight: bold;
|
|
|
|
a {
|
|
color: $error-colour;
|
|
}
|
|
|
|
}
|
|
|
|
}
|