29 lines
363 B
SCSS
29 lines
363 B
SCSS
.search-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
> .group {
|
|
flex: 0 0 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
> .search-btn {
|
|
margin-top: 1rem;
|
|
}
|
|
}
|
|
|
|
.sub-group {
|
|
margin-bottom: 0.5rem;
|
|
|
|
> .label {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.vertical {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|