31 lines
494 B
SCSS
31 lines
494 B
SCSS
.RowForm {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
gap: rem(10px);
|
|
margin-bottom: rem(80px);
|
|
|
|
@include iftablet {
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
gap: rem(10px);
|
|
}
|
|
|
|
@include iflaptop {
|
|
justify-content: center;
|
|
gap: rem(20px);
|
|
}
|
|
|
|
@include ifdesktop {
|
|
justify-content: center;
|
|
gap: rem(40px);
|
|
}
|
|
|
|
.Unit {
|
|
width: 300px;
|
|
@include iftablet {
|
|
width: unset;
|
|
}
|
|
}
|
|
} |