22 lines
264 B
SCSS
22 lines
264 B
SCSS
|
window {
|
||
|
font-weight: bold;
|
||
|
background-color: rgba(0, 0, 0, 0);
|
||
|
}
|
||
|
|
||
|
.left {
|
||
|
padding-left: 5px;
|
||
|
}
|
||
|
|
||
|
.workspaces {
|
||
|
font-family: Hack Nerd Font;
|
||
|
}
|
||
|
|
||
|
.workspace-button:hover {
|
||
|
color: #c0ffc0;
|
||
|
transition: color 0.2s;
|
||
|
}
|
||
|
|
||
|
.workspace-active {
|
||
|
color: #20ff20;
|
||
|
}
|