mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
acf6ea74a7
* Add additional root variables, rename $variable-prefix to $prefix - Adds new root CSS variables for border-radius, border-width, border-color, and border-style - Adds new root CSS variables for heading-color, link-colors, code color, and highlight color - Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss - Updates $mark-padding to be an even pixel number - Renames $variable-prefix to $prefix throughout * Bundlewatch
11 lines
447 B
SCSS
11 lines
447 B
SCSS
// Pagination
|
|
|
|
// scss-docs-start pagination-mixin
|
|
@mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) {
|
|
--#{$prefix}pagination-padding-x: #{$padding-x};
|
|
--#{$prefix}pagination-padding-y: #{$padding-y};
|
|
@include rfs($font-size, --#{$prefix}pagination-font-size);
|
|
--#{$prefix}pagination-border-radius: #{$border-radius}; // stylelint-disable-line custom-property-empty-line-before
|
|
}
|
|
// scss-docs-end pagination-mixin
|