1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00
festa/styles/flex.css

26 lines
277 B
CSS
Raw Normal View History

2022-06-11 03:08:49 +00:00
.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;
}