mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
35 lines
664 B
SCSS
35 lines
664 B
SCSS
window#overview .overview {
|
|
@include floating-widget;
|
|
@include spacing;
|
|
|
|
.workspace {
|
|
&.active>widget {
|
|
border-color: $primary-bg
|
|
}
|
|
|
|
>widget {
|
|
@include widget;
|
|
border-radius: if($radius ==0, 0, $radius + $padding);
|
|
|
|
&:hover {
|
|
background-color: $hover-bg;
|
|
}
|
|
|
|
&:drop(active) {
|
|
border-color: $primary-bg;
|
|
}
|
|
}
|
|
}
|
|
|
|
.client {
|
|
@include button;
|
|
border-radius: $radius;
|
|
margin: $padding;
|
|
|
|
&.hidden {
|
|
@include hidden;
|
|
transition: 0;
|
|
}
|
|
}
|
|
}
|