add uses page
This commit is contained in:
parent
80ea9ad3cb
commit
0763a30859
16 changed files with 185 additions and 19 deletions
14
assets/css/_responsive.scss
Normal file
14
assets/css/_responsive.scss
Normal file
|
@ -0,0 +1,14 @@
|
|||
$desktop-min-breakpoint: 640px;
|
||||
$mobile-max-breakpoint: $desktop-min-breakpoint - 1px;
|
||||
|
||||
@mixin mobile {
|
||||
@media only screen and (max-width: $mobile-max-breakpoint) {
|
||||
@content
|
||||
}
|
||||
}
|
||||
|
||||
@mixin desktop {
|
||||
@media only screen and (min-width: 640px) {
|
||||
@content
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue