You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
238 B
12 lines
238 B
|
|
// Style for template 3 columns auto.
|
|
.columns-autoflow-1to1to1 {
|
|
column-count: 3;
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
// Change to a single column for smaller screens.
|
|
.columns-autoflow-1to1to1 {
|
|
column-count: 1;
|
|
}
|
|
}
|
|
|