added admin interface

This commit is contained in:
kicap1992
2021-12-21 00:25:43 +08:00
parent 9adf18c7b9
commit a25104fadc
3496 changed files with 280326 additions and 7 deletions

View File

@ -0,0 +1,19 @@
// mixins for mobile responsiveness
@mixin screen($res-min, $res-max) {
@media screen and ( min-width: $res-min ) and ( max-width: $res-max ) {
@content;
}
}
@mixin max-screen($res) {
@media screen and ( max-width: $res ) {
@content;
}
}
@mixin min-screen($res) {
@media screen and ( min-width: $res ) {
@content;
}
}