1
0
Fork 0
mirror of https://github.com/kidoman/embd synced 2025-07-04 20:37:46 +02:00
embd/bower_components/gumby/sass/functions/_breakpoints.scss
2014-03-31 06:33:08 +05:30

11 lines
No EOL
277 B
SCSS

@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;
}
}