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.
 
 
 
 

18 lines
221 B

.flex {
display: flex;
flex-flow: row wrap;
}
.flex .block {
flex: 1 50%;
}
.flex .block.large {
flex: 1 100%;
}
@media screen and (max-width: 1024px) {
.flex .block {
flex: 1 100%;
}
}