💄 floating-notifications: better appearance, use gtk's spacing instead of margin

This commit is contained in:
retrozinndev
2025-06-13 18:54:14 -03:00
parent f81ed09c3c
commit bc30068383
2 changed files with 18 additions and 10 deletions
+11 -7
View File
@@ -2,13 +2,17 @@
@use "./mixins";
.floating-notifications-container {
padding: {
right: 6px;
top: 6px;
};
padding: 16px;
& .notification {
margin: 6px;
box-shadow: 0 0 4px .5px colors.$bg-primary;
& .float-notification {
$radius: 18px;
box-shadow: 0 0 8px 1px colors.$bg-translucent;
border-radius: $radius;
& .notification {
padding: 4px;
border-radius: $radius;
}
}
}