mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
21 lines
361 B
SCSS
21 lines
361 B
SCSS
.BottomBar {
|
|
$spacing: $padding / 2;
|
|
--flex-gap: #{$spacing};
|
|
|
|
background-color: var(--blue);
|
|
padding: 0 2px;
|
|
height: 22px;
|
|
|
|
#current-workspace {
|
|
font-size: var(--font-size-small);
|
|
color: white;
|
|
padding: $padding / 4 $padding / 2;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background-color: #ffffff33;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|