17 lines
255 B
SCSS
17 lines
255 B
SCSS
.layoutBlock {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
background-color: #fff;
|
|
padding: 32px;
|
|
margin-bottom: 20px;
|
|
&--row {
|
|
flex-flow: row nowrap;
|
|
}
|
|
&--col {
|
|
flex-flow: column nowrap;
|
|
}
|
|
&--circle {
|
|
border-radius: 20px;
|
|
}
|
|
}
|