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
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;
}