wonderfulfrog.com/src/includes/css/utilities/flex.css
Devin Haska e4c64cf310
All checks were successful
Build and Deploy Staging / build_and_deploy (pull_request) Successful in 1m57s
chore: a bit more tidying up of css
2025-05-28 17:21:29 -07:00

32 lines
331 B
CSS

.flex {
display: flex;
}
.flex-col {
display: flex;
flex-direction: column;
}
.items-center {
align-items: center;
}
.items-end {
align-items: flex-end;
}
.justify-center {
justify-content: center;
}
.justify-between {
justify-content: space-between;
}
.flex-wrap {
flex-wrap: wrap;
}
.flex-1 {
flex: 1;
}