mirror of
https://github.com/zombieFox/nightTab.git
synced 2024-11-24 09:03:39 +01:00
23 lines
380 B
CSS
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;
|
|
}
|