mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
11 lines
277 B
SCSS
11 lines
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;
|
|
}
|
|
} |