Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-sass.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/stylesheets/bootstrap/_jumbotron.scss')
-rw-r--r--assets/stylesheets/bootstrap/_jumbotron.scss7
1 files changed, 4 insertions, 3 deletions
diff --git a/assets/stylesheets/bootstrap/_jumbotron.scss b/assets/stylesheets/bootstrap/_jumbotron.scss
index 7215b991..07a0f98f 100644
--- a/assets/stylesheets/bootstrap/_jumbotron.scss
+++ b/assets/stylesheets/bootstrap/_jumbotron.scss
@@ -1,3 +1,4 @@
+@use "sass:math";
//
// Jumbotron
// --------------------------------------------------
@@ -16,7 +17,7 @@
}
p {
- margin-bottom: ($jumbotron-padding / 2);
+ margin-bottom: math.div($jumbotron-padding, 2);
font-size: $jumbotron-font-size;
font-weight: 200;
}
@@ -27,8 +28,8 @@
.container &,
.container-fluid & {
- padding-right: ($grid-gutter-width / 2);
- padding-left: ($grid-gutter-width / 2);
+ padding-right: math.div($grid-gutter-width, 2);
+ padding-left: math.div($grid-gutter-width, 2);
border-radius: $border-radius-large; // Only round corners at higher resolutions if contained in a container
}