2023-05-25 17:25:11 -04:00
|
|
|
/* Notifications & Message Tray */
|
|
|
|
|
|
|
|
$notification_banner_height: 64px;
|
|
|
|
$notification_banner_width: 34em;
|
|
|
|
|
|
|
|
// Banner notifications
|
|
|
|
.notification-banner {
|
|
|
|
min-height: $notification_banner_height;
|
|
|
|
width: $notification_banner_width;
|
|
|
|
box-shadow: 0 2px 4px 2px $shadow_color;
|
2023-10-09 22:24:14 -04:00
|
|
|
border-radius: $modal_radius;
|
2023-05-25 17:25:11 -04:00
|
|
|
margin: $base_margin;
|
|
|
|
|
2024-03-25 13:34:36 -04:00
|
|
|
@if $contrast == 'high' {
|
|
|
|
@include draw_hc_inset();
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-25 13:34:36 -04:00
|
|
|
.notification-buttons-bin {
|
|
|
|
spacing: 0;
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|
|
|
|
|
2024-03-25 13:34:36 -04:00
|
|
|
.notification-button {
|
2024-09-19 20:40:52 -04:00
|
|
|
@extend %notification_button;
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|