Spaces:
Runtime error
Runtime error
File size: 459 Bytes
db5855f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
@mixin flex {
display: flex;
}
@mixin flex-col {
@include flex();
flex-direction: column;
}
@mixin flex-1 {
flex: 1 1 0%;
}
@mixin min-h-screen {
min-height: 100vh;
}
.flex {
@include flex();
}
.flex-col {
@include flex-col();
}
.flex-1 {
@include flex-1();
}
.min-h-screen {
@include min-h-screen();
}
@media screen and (min-width: 50.5rem) {
.lg-hidden {
display: none !important;
}
}
|