22 lines
242 B
SCSS
22 lines
242 B
SCSS
.row {
|
|
display: flex;
|
|
width: 100%;
|
|
|
|
> * {
|
|
flex: 1 0 0px;
|
|
|
|
&:not(:last-child) {
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
|
|
> :not(:last-child) {
|
|
margin-right: 8px;
|
|
}
|
|
}
|