refactor: move styles to seperate folder

This commit is contained in:
tux
2025-09-24 21:57:45 +05:30
parent ae3bc364be
commit e09d781605
8 changed files with 27 additions and 22 deletions

31
style/_notification.scss Normal file
View File

@@ -0,0 +1,31 @@
@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;
border: 1px solid transparent;
&.critical {
border: 1px solid rgba(red, 0.5);
}
&.normal {
border: 1px solid rgba(yellow, 0.5);
}
.text {
color: rgba($fg-color, 0.8);
.title {
font-weight: 600;
}
}
}
}