9 lines
130 B
CSS
9 lines
130 B
CSS
.Row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex: auto;
|
|
max-width: 100%;
|
|
align-items: stretch;
|
|
gap: 8px;
|
|
}
|