refactor: update notifications style

This commit is contained in:
tux
2025-09-26 01:42:46 +05:30
parent c276e88ef1
commit b745b16ca5
2 changed files with 46 additions and 29 deletions

View File

@@ -10,16 +10,35 @@ window.notifications {
padding: 20px;
border-radius: $rounded;
min-width: 20rem;
border: 1px solid transparent;
.header {
.app-icon {
-gtk-icon-size: 2rem;
}
}
.content {
.image {
-gtk-icon-size: 4rem;
}
}
.actions {
button {
background: $inactive-color;
padding: 10px;
border-radius: $rounded;
&:hover {
background: $bg-color;
}
}
}
&.critical {
border: 1px solid rgba(red, 0.5);
}
&.normal {
border: 1px solid rgba(yellow, 0.5);
}
.text {
color: rgba($fg-color, 0.8);