dots/ags/styles/components/_quick_settings.scss

71 lines
1.2 KiB
SCSS

@use '../theme_colors.scss' as *;
window.quick_settings {
font-weight: bold;
>box {
border: 1px solid $base00;
border-radius: 10px;
margin: 8px;
}
>.inner {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
background: $base0B;
padding: 0.75rem 3rem;
margin: 0;
* {
transition: all 0.2s ease-in-out;
color: $base00;
}
}
button {
padding: 0.75rem 1rem;
}
}
window.qs_bluetooth {
>.inner {
background: $base0B;
padding: 0.75rem 3rem;
border-radius: 10px;
* { color: $base00; }
}
.device {
padding: 1rem 3rem;
}
button {
padding: 0.75rem 0.5rem;
}
}
window.quick_settings button, window.qs_bluetooth button {
transition: all 0.2s ease-in-out;
background: $base0B;
border: 2px solid $base00;
margin: 5px;
&:hover {
background: $base00;
* {
color: $base0B;
}
}
&.active {
background: $base00;
border: 0.5px solid $base0B;
* {
color: $base0B;
}
}
}