mirror of
https://github.com/tuxdotrs/tpanel.git
synced 2025-10-10 04:41:55 +05:30
41 lines
561 B
SCSS
41 lines
561 B
SCSS
@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;
|
|
}
|
|
}
|