9 lines
101 B
CSS
9 lines
101 B
CSS
.two-columns {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 20px;
|
|
}
|
|
|
|
.column {
|
|
flex: 1;
|
|
} |