mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 22:54:22 +00:00
26 lines
277 B
CSS
26 lines
277 B
CSS
|
.flex {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.flex-row {
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
|
||
|
.flex-column {
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.flex-grow {
|
||
|
flex-grow: 1;
|
||
|
flex-shrink: 0;
|
||
|
}
|
||
|
|
||
|
.flex-fix {
|
||
|
flex-grow: 0;
|
||
|
flex-shrink: 0;
|
||
|
}
|
||
|
|
||
|
.flex-shrink {
|
||
|
flex-grow: 0;
|
||
|
flex-shrink: 1;
|
||
|
}
|