kanban / webapp /src /components /viewHeader /viewHeader.scss
Leon4gr45's picture
Upload folder using huggingface_hub
13555f3 verified
.ViewHeader {
flex: 0 0 auto;
display: flex;
flex-direction: row;
border-bottom: solid 1px rgba(var(--center-channel-color-rgb), 0.16);
margin: 16px 0 0;
padding: 8px 0;
color: rgba(var(--center-channel-color-rgb), 0.64);
align-items: center;
@media (max-width: 768px) {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
> div {
margin-right: 12px;
white-space: nowrap;
&:last-child {
margin: 0;
}
}
#groupByLabel {
margin-left: 0.3em;
}
.IconButton {
background: none;
padding: 0;
.Icon {
width: 24px;
height: 24px;
margin: 0;
}
&:hover {
background: rgba(var(--center-channel-color-rgb), 0.1);
}
}
.viewSelector {
display: flex;
flex-direction: row;
position: relative;
.MenuWrapper {
display: flex;
align-items: center;
}
}
}
.board-search-field {
position: relative;
input {
font-size: 12px;
border-radius: 4px;
padding: 0 12px 0 32px;
height: 32px;
border: 1px solid rgba(var(--center-channel-color-rgb), 0.16);
padding-bottom: 1px;
&:focus {
border-color: rgba(var(--button-bg-rgb), 1);
}
}
.board-search-icon {
position: absolute;
left: 10px;
color: rgba(var(--center-channel-color-rgb), 0.64);
display: flex;
align-items: center;
height: 100%;
}
}