10 lines
173 B
CSS
10 lines
173 B
CSS
.row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: var(--vertical-spacing, 1rem);
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.row[data-spacing="between"] {
|
|
justify-content: space-between;
|
|
} |