Files
colorshell/ags/style/_logout-menu.scss
T
retrozinndev 240ba192b6 chore(logout-menu): use hyprctl to exit Hyprland, add background color for better visibility
also improved error handling if command fails
2025-06-15 19:36:14 -03:00

45 lines
820 B
SCSS

@use "./colors";
.logout-menu {
background: rgba($color: colors.$bg-translucent-primary, $alpha: .4);
.top {
.time {
font-size: 128px;
font-weight: 900;
color: colors.$fg-primary;
text-shadow: 1px 1px 2px colors.$bg-translucent;
}
.date {
font-size: 24px;
font-weight: 500;
text-shadow: 1px 1px 2px colors.$bg-translucent;
}
}
.button-row {
margin: 0 150px;
& > button {
& icon {
font-size: 128px;
}
margin: {
left: 4px;
right: 4px;
}
border-radius: 6px;
&:first-child {
border-top-left-radius: 28px;
border-bottom-left-radius: 28px;
}
&:last-child {
border-top-right-radius: 28px;
border-bottom-right-radius: 28px;
}
}
}
}