11 lines
198 B
CSS
11 lines
198 B
CSS
|
.field-row {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: space-evenly;
|
||
|
justify-items: left;
|
||
|
}
|
||
|
|
||
|
/* make all row elements the same width */
|
||
|
.field-row * {
|
||
|
flex: 1 1 0px;
|
||
|
}
|