nixos-configs/nixosModules/ags-v2/config/widgets/powermenu/_index.scss
matt1432 7b48cb8487
All checks were successful
Discord / discord commits (push) Has been skipped
chore(agsV2): fix deprecation warnings for scss
2024-11-04 21:42:25 -05:00

32 lines
544 B
SCSS

@use 'sass:color';
@use '../../style/colors';
.powermenu {
font-size: 70px;
padding: 10px;
icon {
min-width: 130px;
min-height: 130px;
}
button {
margin: 5px 10px;
transition: all ease .2s;
&:hover,
&:active {
background-color: color.adjust(colors.$window_bg_color, $lightness: 3%);
}
}
.shutdown {
color: colors.$red_1;
}
.reboot {
color: colors.$purple_1;
}
.logout {
color: colors.$yellow_1;
}
}