nightTab/css/head.css
2018-12-26 10:43:38 -07:00

23 lines
380 B
CSS

.head {
--gutter: 0.5em;
margin: 0 calc(var(--gutter) * -1);
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: stretch;
}
.head-item {
margin-left: var(--gutter);
margin-right: var(--gutter);
display: flex;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
}
.head-search {
flex-grow: 1;
}