|
| 1 | +export default function flex(query='') { |
| 2 | + return /*css*/` |
| 3 | +/*** Box alignment ***/ |
| 4 | +.align-items-stretch${query}{align-items:stretch;} |
| 5 | +.align-items-center${query}{align-items:center;} |
| 6 | +.align-items-start${query}{align-items:start;} |
| 7 | +.align-items-end${query}{align-items:end;} |
| 8 | +.align-items-self-start${query}{align-items:self-start;} |
| 9 | +.align-items-self-end${query}{align-items:self-end;} |
| 10 | +.align-items-flex-start${query}{align-items:flex-start;} |
| 11 | +.align-items-flex-end${query}{align-items:flex-end;} |
| 12 | +.align-items-baseline${query}{align-items:baseline;} |
| 13 | +
|
| 14 | +.align-content-stretch${query}{align-content:stretch;} |
| 15 | +.align-content-center${query}{align-content:center;} |
| 16 | +.align-content-start${query}{align-content:start;} |
| 17 | +.align-content-end${query}{align-content:end;} |
| 18 | +.align-content-flex-start${query}{align-content:flex-start;} |
| 19 | +.align-content-flex-end${query}{align-content:flex-end;} |
| 20 | +.align-content-baseline${query}{align-content:baseline;} |
| 21 | +.align-content-between${query}{align-content:space-between;} |
| 22 | +.align-content-around${query}{align-content:space-around;} |
| 23 | +.align-content-evenly${query}{align-content:space-evenly;} |
| 24 | +
|
| 25 | +.align-self-stretch${query}{align-self:stretch;} |
| 26 | +.align-self-auto${query}{align-self:auto;} |
| 27 | +.align-self-center${query}{align-self:center;} |
| 28 | +.align-self-start${query}{align-self:start;} |
| 29 | +.align-self-end${query}{align-self:end;} |
| 30 | +.align-self-self-start${query}{align-self:self-start;} |
| 31 | +.align-self-self-end${query}{align-self:self-end;} |
| 32 | +.align-self-flex-start${query}{align-self:flex-start;} |
| 33 | +.align-self-flex-end${query}{align-self:flex-end;} |
| 34 | +.align-self-baseline${query}{align-self:baseline;} |
| 35 | +
|
| 36 | +.justify-content-stretch${query}{justify-content:stretch;} |
| 37 | +.justify-content-center${query}{justify-content:center;} |
| 38 | +.justify-content-start${query}{justify-content:start;} |
| 39 | +.justify-content-end${query}{justify-content:end;} |
| 40 | +.justify-content-flex-start${query}{justify-content:flex-start;} |
| 41 | +.justify-content-flex-end${query}{justify-content:flex-end;} |
| 42 | +.justify-content-between${query}{justify-content:space-between;} |
| 43 | +.justify-content-around${query}{justify-content:space-around;} |
| 44 | +.justify-content-evenly${query}{justify-content:space-evenly;} |
| 45 | +
|
| 46 | +.justify-items-stretch${query}{justify-items:stretch;} |
| 47 | +.justify-items-center${query}{justify-items:center;} |
| 48 | +.justify-items-start${query}{justify-items:start;} |
| 49 | +.justify-items-end${query}{justify-items:end;} |
| 50 | +.justify-items-flex-start${query}{justify-items:flex-start;} |
| 51 | +.justify-items-flex-end${query}{justify-items:flex-end;} |
| 52 | +.justify-items-self-start${query}{justify-items:self-start;} |
| 53 | +.justify-items-self-end${query}{justify-items:self-end;} |
| 54 | +.justify-items-baseline${query}{justify-items:baseline;} |
| 55 | +
|
| 56 | +.justify-self-stretch${query}{justify-self:stretch;} |
| 57 | +.justify-self-center${query}{justify-self:center;} |
| 58 | +.justify-self-start${query}{justify-self:start;} |
| 59 | +.justify-self-end${query}{justify-self:end;} |
| 60 | +.justify-self-flex-start${query}{justify-self:flex-start;} |
| 61 | +.justify-self-flex-end${query}{justify-self:flex-end;} |
| 62 | +.justify-self-self-start${query}{justify-self:self-start;} |
| 63 | +.justify-self-self-end${query}{justify-self:self-end;} |
| 64 | +.justify-self-baseline${query}{justify-self:baseline;} |
| 65 | +
|
| 66 | +.place-content-stretch${query}{place-content:stretch;} |
| 67 | +.place-content-center${query}{place-content:center;} |
| 68 | +.place-content-start${query}{place-content:start;} |
| 69 | +.place-content-end${query}{place-content:end;} |
| 70 | +.place-content-flex-start${query}{place-content:flex-start;} |
| 71 | +.place-content-flex-end${query}{place-content:flex-end;} |
| 72 | +.place-content-between${query}{place-content:space-between;} |
| 73 | +.place-content-around${query}{place-content:space-around;} |
| 74 | +.place-content-evenly${query}{place-content:space-evenly;} |
| 75 | +
|
| 76 | +.place-items-stretch${query}{place-items:stretch;} |
| 77 | +.place-items-center${query}{place-items:center;} |
| 78 | +.place-items-start${query}{place-items:start;} |
| 79 | +.place-items-end${query}{place-items:end;} |
| 80 | +.place-items-self-start${query}{place-items:self-start;} |
| 81 | +.place-items-self-end${query}{place-items:self-end;} |
| 82 | +.place-items-flex-start${query}{place-items:flex-start;} |
| 83 | +.place-items-flex-end${query}{place-items:flex-end;} |
| 84 | +.place-items-baseline${query}{place-items:baseline;} |
| 85 | +
|
| 86 | +.place-self-stretch${query}{place-self:stretch;} |
| 87 | +.place-self-center${query}{place-self:center;} |
| 88 | +.place-self-start${query}{place-self:start;} |
| 89 | +.place-self-end${query}{place-self:end;} |
| 90 | +.place-self-flex-start${query}{place-self:flex-start;} |
| 91 | +.place-self-flex-end${query}{place-self:flex-end;} |
| 92 | +.place-self-self-start${query}{place-self:self-start;} |
| 93 | +.place-self-self-end${query}{place-self:self-end;} |
| 94 | +.place-self-baseline${query}{place-self:baseline;} |
| 95 | +` |
| 96 | +} |
0 commit comments