Julian Sparber c5ec3e45e4 components: Drop telepathy client
The telepathy client component has been unmaintained for a long time.
Now that we rework the notifications massively it's time to drop the
support for it.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3173>
2024-03-03 01:33:16 +00:00

26 lines
502 B
SCSS

/* 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;
border-radius: $modal_radius;
margin: $base_margin;
@if $contrast == 'high' {
@include draw_hc_inset();
}
.notification-actions {
spacing: 0;
}
.notification-button {
@extend %bubble_button;
}
}