Skip to content

Commit 154916c

Browse files
Yohnmdo
authored andcommittedJul 18, 2022
Fixing pagination compile issue
This was an issue with the tables as well, but that has been updated here - 4a3c004 This was also noted here - 36501#issuecomment-1153187062_ This effects the 5.2 beta1 that is released on the homepage. Whats happening is with a fresh download and compile, with some compilers, I noticed not all of them run into this issue, we get the Sass variable showing up and not the actual value. Steps to reproduce - - Download the source code form the docs for beta 2 and extract - Open VSCode -> open folder to the bootstrap directory you just extracted - install the "Sass/Less/Stylus/Pug/Jade/Typescript/Javascript Compile Hero Pro" v2.3.53 by Eno Yao extension ---- might have to restart VSCode - go to that extensions settings, and set the directory to save the output / compiled version to `../dist` - tap that Compile Hero on the bottom to activate the extension - open `bootstrap.scss` add a space or a new line and save it - check the compiles version and you should see the errors
1 parent 9d5c834 commit 154916c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎scss/_variables.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1196,7 +1196,7 @@ $pagination-color: var(--#{$prefix}link-color) !default;
11961196
$pagination-bg: $white !default;
11971197
$pagination-border-radius: $border-radius !default;
11981198
$pagination-border-width: $border-width !default;
1199-
$pagination-margin-start: calc($pagination-border-width * -1) !default; // stylelint-disable-line function-disallowed-list
1199+
$pagination-margin-start: ($pagination-border-width * -1) !default;
12001200
$pagination-border-color: $gray-300 !default;
12011201

12021202
$pagination-focus-color: var(--#{$prefix}link-hover-color) !default;

0 commit comments

Comments
 (0)
Please sign in to comment.