34 lines
379 B
SCSS
34 lines
379 B
SCSS
|
.main {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.nav {
|
||
|
padding: 16px;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
gap: 16px;
|
||
|
}
|
||
|
|
||
|
.spacer {
|
||
|
flex-grow: 1;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
flex-grow: 1;
|
||
|
}
|
||
|
|
||
|
.searchContainer {
|
||
|
flex-shrink: 1;
|
||
|
flex-basis: content;
|
||
|
}
|