22 lines
439 B
SCSS
Raw Normal View History

2021-04-08 22:59:05 +08:00
#dash {
color: $light_alt_fg_color;
background-color: $light_divider_color;
border-left: 0;
border-radius: 0 ($bd_radius * 1.5) ($bd_radius * 1.5) 0;
2021-04-10 18:05:02 +08:00
padding: 6px;
2021-04-08 22:59:05 +08:00
&:rtl {
border-radius: ($bd_radius * 1.5) 0 0 ($bd_radius * 1.5);
}
.placeholder {
background-image: url("assets/dash-placeholder.svg");
background-size: contain;
height: 24px;
}
}
.dash-item-container > StWidget {
padding: 3px 6px;
}