nixos-configs/devices/binto/config/ags/scss/widgets/powermenu.scss
matt1432 035bd58eb2
Some checks failed
Binary Cache / Build (push) Failing after 13m41s
Discord / discord commits (push) Has been skipped
fix(ags binto): fix powermenu button scss
2023-12-25 22:27:12 -05:00

34 lines
635 B
SCSS

.powermenu {
background-color: $bg;
color: $fg;
padding: 10px;
font-family: "MesloLGS NF";
/* font-family: Iosevka Nerd Font; */
font-size: 70px;
border: 2px solid $contrast-bg;
label {
min-width: 140px;
min-height: 130px;
}
.button {
margin: 5px 10px;
min-width: 80px;
transition: all ease .2s;
&:hover { background-color: $bg-secondary; }
&:active { background-color: $bg-secondary; }
.content {
padding: 0 15px;
}
}
.shutdown { color: $red; }
.reboot { color: $magenta; }
.logout { color: $yellow; }
}
.powermenu-clickhandler {
background-color: black;
}