mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-02-22 17:55:59 +00:00
(front end prep for Purchasing Tickets module)
This commit is contained in:
40
resources/assets/less/flex.less
Normal file
40
resources/assets/less/flex.less
Normal 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; }
|
||||
Reference in New Issue
Block a user