30 lines
575 B
SCSS
30 lines
575 B
SCSS
.workspaces {
|
|
background-color: $bg;
|
|
border-radius: 80px;
|
|
border: 2px solid #1b1b1b;
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
padding-left: 12px;
|
|
padding-right: 12px;
|
|
|
|
.button {
|
|
margin: 2px;
|
|
min-width: 20px;
|
|
border-radius: 100%;
|
|
* {color: transparent;}
|
|
}
|
|
|
|
.empty {
|
|
border: none;
|
|
transition: border-color 0.25s linear;
|
|
}
|
|
.occupied {
|
|
border: 2px solid $bg;
|
|
background: $contrastbg;
|
|
transition: border-color 0.25s linear;
|
|
}
|
|
.active {
|
|
border: 2px solid #50fa7b;
|
|
transition: border-color 0.25s linear;
|
|
}
|
|
}
|