1
0
mirror of https://github.com/kidoman/embd synced 2024-06-08 03:57:48 +02:00
embd/bower_components/gumby/sass/functions/_breakpoints.scss

11 lines
277 B
SCSS
Raw Normal View History

2014-03-31 03:03:08 +02:00
@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;
}
}