UNPKG

689 BSCSSView Raw
1@import '~bootstrap-sass/assets/stylesheets/bootstrap/mixins';
2
3// Filter
4@mixin filter($arguments...) {
5 // sass-lint:disable-block no-vendor-prefixes
6 -webkit-filter: $arguments;
7 -moz-filter: $arguments;
8 -o-filter: $arguments;
9 -ms-filter: $arguments;
10 filter: $arguments;
11}
12
13// Smooth scrolling
14// http://weblog.west-wind.com/posts/2013/Jun/01/Smoothing-out-div-scrolling-in-Mobile-WebKit-Browsers
15@mixin overflow($horizontal, $vertical) {
16 // sass-lint:disable-block no-vendor-prefixes
17 overflow-x: $horizontal;
18 overflow-y: $vertical;
19 -ms-overflow-style: -ms-autohiding-scrollbar;
20 -webkit-overflow-scrolling: touch; // sass-lint:disable-line no-misspelled-properties
21}