1
0
mirror of https://github.com/kidoman/embd synced 2025-02-11 05:03:18 +01:00

11 lines
277 B
SCSS
Raw Normal View History

2014-03-31 06:33:08 +05:30
@function breakpoint($breakpoint) {
@if $breakpoint == $document-width {
@return $document-width - 1;
}
@if $breakpoint == $tablet-device-width {
@return $tablet-device-width - 1;
}
@if $breakpoint == $min-device-width {
@return $min-device-width + 1;
}
}