13 lines
193 B
CSS
13 lines
193 B
CSS
.promos {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x2);
|
|
padding: var(--Space-x5) 0;
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.promos {
|
|
flex-direction: row;
|
|
}
|
|
}
|