Michael Zhang
4ec8018de6
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
33 lines
379 B
SCSS
33 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;
|
|
}
|