Files
custum-hyprpanel/scss/bar/workspace.scss

34 lines
561 B
SCSS

@import "../colors";
.workspaces {
label {
font-size: 0.2em;
min-width: 4em;
min-height: 4em;
border-radius: 1.9rem * .6;
margin: 0rem 0.5rem * .5;
transition: 300ms * .5;
background-color: $sky;
color: $sky;
&.occupied {
background-color: $flamingo;
color: $flamingo;
min-width: 4em;
min-height: 4em;
}
&.active {
color: $pink;
background-color: $pink;
min-width: 12em;
min-height: 4em;
}
}
}
.workspaces label:not(:first-child) {
margin-left: 4.5em;
}