diff options
| author | Sebastian Blank <[email protected]> | 2023-09-12 22:04:02 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-12 13:04:02 -0700 |
| commit | d07d3a60c520b9c558271068c7ae1e7bce9491b5 (patch) | |
| tree | ce38554ba1589c70d3eb1b0e11ea3ba9f293b00f /scss | |
| parent | 413894d4691b5ebb1377fcf5ab8fd3bba49766a8 (diff) | |
| download | bootstrap-d07d3a60c520b9c558271068c7ae1e7bce9491b5.tar.xz bootstrap-d07d3a60c520b9c558271068c7ae1e7bce9491b5.zip | |
Fix dart-sass deprecation warning (#39030)
* Fix dart-sass deprecation warning
* Fix wrong percentages
---------
Co-authored-by: XhmikosR <[email protected]>
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/mixins/_grid.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/mixins/_grid.scss b/scss/mixins/_grid.scss index 38e2239fd..99b1e7dea 100644 --- a/scss/mixins/_grid.scss +++ b/scss/mixins/_grid.scss @@ -56,7 +56,7 @@ @mixin row-cols($count) { > * { flex: 0 0 auto; - width: divide(100%, $count); + width: percentage(divide(1, $count)); } } |
