mirror of
https://github.com/zaphar/Heracles.git
synced 2025-07-24 21:09:52 -04:00
19 lines
200 B
CSS
19 lines
200 B
CSS
|
.column-flex {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.row-flex {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
|
||
|
.flex-item-grow {
|
||
|
flex: 1 0 auto;
|
||
|
}
|
||
|
|
||
|
.flex-item-shrink {
|
||
|
flex: 0 1 auto;
|
||
|
}
|
||
|
|