16 lines
175 B
SCSS
16 lines
175 B
SCSS
.cl-waterfall {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
|
|
&::after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
|
|
&-column {
|
|
float: left;
|
|
break-inside: avoid;
|
|
}
|
|
}
|