Files
dotfiles/.config/eww/widgets/hypr_workspaces.scss

47 lines
619 B
SCSS

.workspaces {
/* Green */
$light: #bad012;
$dark: #53730a;
/* Orange */
//$light: #fde10e;
//$dark: #ff6520;
background: transparent;
padding: 0;
margin: 0;
&--ws {
border-radius: 0;
&--label {
font-size: 1rem;
color: black;
}
&--active {
background: $light;
border-color: $light;
}
&--inactive {
background: $dark;
border-color: $light;
}
}
.first {
border-radius: 1.5rem 0 0 1rem;
border-right: 1px solid black;
}
.middle {
border-radius: 0;
border-right: 1px solid black;
}
.last {
border-radius: 0 1rem 1.5rem 0;
}
}