24 lines
307 B
SCSS
24 lines
307 B
SCSS
.workspacecontainer{
|
|
background: orange;
|
|
|
|
}
|
|
|
|
.workspace{
|
|
border-radius: 1rem 1rem;
|
|
margin: 6px;
|
|
padding: 6px;
|
|
font-family: 'Symbols Nerd Font Mono';
|
|
font-size: 16px;
|
|
border: 1px solid blue;
|
|
}
|
|
|
|
.wsactive{
|
|
background: pink;
|
|
color: red;
|
|
}
|
|
|
|
.wsinactive{
|
|
background: yellow;
|
|
color: red;
|
|
}
|