mirror of
https://github.com/tuxdotrs/tpanel.git
synced 2025-10-10 12:51:54 +05:30
51 lines
748 B
SCSS
51 lines
748 B
SCSS
@use "./_variable.scss" as *;
|
|
@use "sass:math";
|
|
@use "sass:list";
|
|
|
|
window.notifications {
|
|
margin: 10px;
|
|
|
|
.notification {
|
|
background: $bg-color;
|
|
padding: 20px;
|
|
border-radius: $rounded;
|
|
min-width: 20rem;
|
|
|
|
.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);
|
|
}
|
|
|
|
.text {
|
|
color: rgba($fg-color, 0.8);
|
|
|
|
.title {
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
}
|
|
}
|