43 lines
819 B
SCSS
43 lines
819 B
SCSS
.toolbar{
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
justify-content: space-between;
|
|
|
|
|
|
input.search{
|
|
border-radius: 12px;
|
|
background: var(--background);
|
|
padding: 3px 10px;
|
|
cursor: pointer;
|
|
filter: brightness(97%);
|
|
border: none;
|
|
font-size: 14px;
|
|
}
|
|
|
|
}
|
|
.toolbar-filters{ display: flex;
|
|
align-items: center;
|
|
gap: 5px;}
|
|
|
|
.applied-filters{
|
|
display: flex;
|
|
gap: 4px;
|
|
margin-top: 10px;
|
|
|
|
.applied-filter {
|
|
font-size: 13px;
|
|
border-radius: 12px;
|
|
background: var(--background);
|
|
padding: 3px 10px;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 4px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.applied-filter:hover {
|
|
opacity: .8;
|
|
background-color: #eee;
|
|
}
|
|
} |