30 lines
407 B
SCSS
30 lines
407 B
SCSS
@import "../colors";
|
|
|
|
.bar {
|
|
background: $mantle;
|
|
font-size: 1.15rem;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.bar_item_box_visible {
|
|
background: $surface0;
|
|
border-radius: 8px;
|
|
padding: 2px 12px;
|
|
margin: 6px 3px;
|
|
}
|
|
|
|
.bar_item_box_hidden {
|
|
background: none;
|
|
border-radius: 0px;
|
|
padding: 0px 0px 0px 0px;
|
|
margin: 0px 0px 0px 0px;
|
|
}
|
|
|
|
.box-left {
|
|
margin-left: 25px;
|
|
}
|
|
|
|
.box-right {
|
|
margin-right: 25px;
|
|
}
|