27 lines
509 B
SCSS
27 lines
509 B
SCSS
.ViewHeader {
|
|
flex: 0 0 auto;
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
border-bottom: solid 1px rgba(var(--main-fg), 0.16);
|
|
margin-bottom: 10px;
|
|
padding: 10px 10px;
|
|
color: rgba(var(--main-fg), 0.5);
|
|
align-items: center;
|
|
|
|
> div {
|
|
margin-right: 5px;
|
|
white-space: nowrap
|
|
}
|
|
|
|
#groupByLabel {
|
|
margin-left: 0.3em;
|
|
}
|
|
|
|
.IconButton {
|
|
background: none;
|
|
&:hover {
|
|
background: rgba(var(--main-fg), 0.1);
|
|
}
|
|
}
|
|
}
|