added admin interface
This commit is contained in:
19
admin/assets/scss/mixins/_responsive.scss
Normal file
19
admin/assets/scss/mixins/_responsive.scss
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user