Closed Niksac closed 1 year ago
Name | Link |
---|---|
Latest commit | |
Latest deploy log | https://app.netlify.com/sites/comforting-cocada-22086c/deploys/655e7a1401df1a7afc2f240d |
Deploy Preview | https://deploy-preview-280--comforting-cocada-22086c.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
LGTM! Thank you
Commit 809e8476 broke pagination styles due to changes in bootstraps SCSS.
New:
Old:
This happens because bootstrap adds border radius to each page link if it thinks the user intends to have margin between those elements:
As the calc() is not executed on compile time, this comparison returns false for our value
$pagination-margin-start: -$pagination-border-width !default;
Setting
$pagination-margin-start
to the same calc() expression on our end restores the look.