nixos-configs/config/eww/traybuttons/traybuttons.scss

63 lines
1.2 KiB
SCSS
Raw Normal View History

2023-07-15 00:46:04 -04:00
.osk-toggle {
2023-07-23 13:40:45 -04:00
font-size: 28px;
min-height: 40px;
2023-07-15 00:46:04 -04:00
min-width: 50px;
padding: 0px 0px 0px 5px;
}
.tablet-toggle {
2023-07-23 13:40:45 -04:00
font-size: 28px;
min-height: 40px;
min-width: 50px;
padding: 0px 0px 0px 5px;
}
.heart-toggle {
2023-07-23 13:40:45 -04:00
font-size: 28px;
min-height: 40px;
min-width: 50px;
padding: 0px 0px 0px 4px;
}
.notif-panel {
font-size: 20px;
min-height: 37px;
min-width: 105px;
2023-07-23 13:40:45 -04:00
padding: 1px 0px 1px 5px;
}
.quick-settings-toggle {
font-size: 24px;
min-height: 40px;
2023-07-23 13:40:45 -04:00
min-width: 40px;
padding: 0px 0px 0px 0px;
}
.toggle-off {
background-color: $bg;
//transition: border-color 0.5s ease-in-out;
color: #CBA6F7;
border-radius: 80px;
2023-07-15 00:46:04 -04:00
border: 2px solid #1b1b2b;
transition: background-color 0.5s ease-in-out;
}
.toggle-off:hover {
background-color: rgba(127, 132, 156, 0.4);
transition: background-color 0.5s ease-in-out;
}
.toggle-on {
background-color: $bg;
//transition: border-color 0.5s ease-in-out;
color: #CBA6F7;
border-radius: 80px;
2023-07-15 00:46:04 -04:00
border: 2px solid $contrastbg;
transition: background-color 0.5s ease-in-out;
}
.toggle-on:hover {
background-color: rgba(127, 132, 156, 0.4);
transition: background-color 0.5s ease-in-out;
}