corrections found while writing documentation
This commit is contained in:
parent
5485eb9260
commit
ab22ebc967
17 changed files with 127 additions and 42 deletions
23
imports/ui/stylesheets/mixins.scss
Normal file
23
imports/ui/stylesheets/mixins.scss
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
@mixin breakpoint($point) {
|
||||
@if $point == desktop-large {
|
||||
@media (min-width: 1200px) { @content; }
|
||||
} @else if $point == desktop {
|
||||
@media (min-width: 1024px) { @content; }
|
||||
} @else if $point == tablet {
|
||||
@media (min-width: 768px) { @content; }
|
||||
} @else if $point == handheld-large {
|
||||
@media (min-width: 480px) { @content; }
|
||||
} @else {
|
||||
@media (min-width: $point) { @content; }
|
||||
}
|
||||
}
|
||||
|
||||
@mixin ie {
|
||||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
||||
@content;
|
||||
}
|
||||
|
||||
@supports (-ms-accelerator:true) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue