31 lines
516 B
SCSS
31 lines
516 B
SCSS
@import "../colors";
|
|
|
|
.workspaces {
|
|
label {
|
|
font-size: 0rem;
|
|
min-width: 0.9rem;
|
|
min-height: 0.9rem;
|
|
border-radius: 1.9rem * .6;
|
|
margin: 0rem 0.5rem * .5;
|
|
transition: 300ms * .5;
|
|
background-color: $mauve;
|
|
|
|
&.occupied {
|
|
background-color: $yellow;
|
|
min-width: 0.9rem;
|
|
min-height: 0.9rem;
|
|
}
|
|
|
|
&.active {
|
|
background-color: $sky;
|
|
min-width: 2.2rem;
|
|
min-height: 0.9rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.workspaces label:not(:first-child) {
|
|
margin-left: 0.9rem;
|
|
}
|