summaryrefslogtreecommitdiffstats
path: root/npm_assets/node_modules/bootstrap/scss/utilities
diff options
context:
space:
mode:
Diffstat (limited to 'npm_assets/node_modules/bootstrap/scss/utilities')
-rw-r--r--npm_assets/node_modules/bootstrap/scss/utilities/_embed.scss2
-rw-r--r--npm_assets/node_modules/bootstrap/scss/utilities/_spacing.scss2
2 files changed, 2 insertions, 2 deletions
diff --git a/npm_assets/node_modules/bootstrap/scss/utilities/_embed.scss b/npm_assets/node_modules/bootstrap/scss/utilities/_embed.scss
index 4497ac0..e37465e 100644
--- a/npm_assets/node_modules/bootstrap/scss/utilities/_embed.scss
+++ b/npm_assets/node_modules/bootstrap/scss/utilities/_embed.scss
@@ -33,7 +33,7 @@
.embed-responsive-#{$embed-responsive-aspect-ratio-x}by#{$embed-responsive-aspect-ratio-y} {
&::before {
- padding-top: percentage($embed-responsive-aspect-ratio-y / $embed-responsive-aspect-ratio-x);
+ padding-top: percentage(divide($embed-responsive-aspect-ratio-y, $embed-responsive-aspect-ratio-x));
}
}
}
diff --git a/npm_assets/node_modules/bootstrap/scss/utilities/_spacing.scss b/npm_assets/node_modules/bootstrap/scss/utilities/_spacing.scss
index 3511367..3e98581 100644
--- a/npm_assets/node_modules/bootstrap/scss/utilities/_spacing.scss
+++ b/npm_assets/node_modules/bootstrap/scss/utilities/_spacing.scss
@@ -30,7 +30,7 @@
// Negative margins (e.g., where `.mb-n1` is negative version of `.mb-1`)
@each $size, $length in $spacers {
- @if $size != 0 {
+ @if "#{$size}" != "0" {
.m#{$infix}-n#{$size} { margin: -$length !important; }
.mt#{$infix}-n#{$size},
.my#{$infix}-n#{$size} {