diff options
| author | Mark Otto <[email protected]> | 2021-06-14 09:35:30 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-06-14 09:35:30 -0700 |
| commit | be17444756c48e3a892c36507f859cd841bd8c1f (patch) | |
| tree | 0fae73c54f82eda6321bea3e759cc184690710e9 /scss/_images.scss | |
| parent | e9da490e510298086e93fe829949a67657443be5 (diff) | |
| download | bootstrap-be17444756c48e3a892c36507f859cd841bd8c1f.tar.xz bootstrap-be17444756c48e3a892c36507f859cd841bd8c1f.zip | |
Replace `/` division with multiplication and custom `divide()` function (#34245)
* Convert bulk of division to multiplication
* Use custom divide() function instead of Dart Sass math module for greater compatibility
* Apply suggestions from code review
* Fix functions
Diffstat (limited to 'scss/_images.scss')
| -rw-r--r-- | scss/_images.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_images.scss b/scss/_images.scss index b11b45a37..3d6a1014c 100644 --- a/scss/_images.scss +++ b/scss/_images.scss @@ -32,7 +32,7 @@ } .figure-img { - margin-bottom: $spacer / 2; + margin-bottom: $spacer * .5; line-height: 1; } |
