11 lines
154 B
CSS
11 lines
154 B
CSS
.quadrant-grid {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
|
|
&__quadrant {
|
|
flex: 0 0 45%;
|
|
margin-bottom: 40px;
|
|
}
|
|
}
|