(front end prep for Purchasing Tickets module)

This commit is contained in:
Adam Wathan
2016-11-07 09:56:51 -05:00
parent a3d6a1efcd
commit ced05329c6
53 changed files with 12963 additions and 273 deletions

View File

@@ -0,0 +1,40 @@
.flex { display: flex; }
.flex-top { align-items: flex-start; }
.flex-col {
display: flex;
flex-direction: column;
}
.flex-center {
display: flex;
justify-content: center;
align-items: center;
}
.flex-y-center {
display: flex;
align-items: center;
}
.flex-y-end {
display: flex;
align-items: flex-end;
}
.flex-right {
justify-content: flex-end;
}
.flex-spaced {
display: flex;
justify-content: space-between;
}
.flex-around {
display: flex;
justify-content: space-around;
}
.flex-fit { flex: 1; }
.flex-no-shrink { flex-shrink: 0; }