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

40
style/_launcher.scss Normal file
View File

@@ -0,0 +1,40 @@
@use "./_variable.scss" as *;
window.launcher {
background: $bg-color;
border-radius: $rounded;
padding: 10px;
font-size: 1.2rem;
.search {
min-width: 300px;
padding: 10px;
color: rgba($fg-color, 0.5);
}
separator {
border: 1px solid rgba($inactive-color, 0.5);
}
.list {
background: $bg-color;
}
.button {
border-radius: $rounded;
padding: 10px;
&:hover,
&:focus {
background: $inactive-color;
}
image {
-gtk-icon-size: 2rem;
}
}
.name {
color: $fg-color;
}
}