mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 14:44:21 +00:00
26 lines
No EOL
277 B
CSS
26 lines
No EOL
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;
|
|
} |