diff options
| author | Thomas Schaller <[email protected]> | 2019-08-14 00:03:55 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-08-14 01:03:55 +0300 |
| commit | 7149b6f0ebaafc6a3dc882a43cb376a7f9f7626e (patch) | |
| tree | be3f64ecab2d64904a969f568f62fe8e8202ade3 | |
| parent | 3130288ba694451365bf7aa1b78a2a4e3ae67740 (diff) | |
| download | bootstrap-7149b6f0ebaafc6a3dc882a43cb376a7f9f7626e.tar.xz bootstrap-7149b6f0ebaafc6a3dc882a43cb376a7f9f7626e.zip | |
Function map-get-multiple now returns the correct variable (#29247)
| -rw-r--r-- | bundlesize.config.json | 4 | ||||
| -rw-r--r-- | scss/_functions.scss | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/bundlesize.config.json b/bundlesize.config.json index 137c75352..eda41a22d 100644 --- a/bundlesize.config.json +++ b/bundlesize.config.json @@ -2,11 +2,11 @@ "files": [ { "path": "./dist/css/bootstrap-grid.css", - "maxSize": "8 kB" + "maxSize": "6.5 kB" }, { "path": "./dist/css/bootstrap-grid.min.css", - "maxSize": "7.2 kB" + "maxSize": "6 kB" }, { "path": "./dist/css/bootstrap-reboot.css", diff --git a/scss/_functions.scss b/scss/_functions.scss index c9edfff42..0e77bf4b3 100644 --- a/scss/_functions.scss +++ b/scss/_functions.scss @@ -50,7 +50,7 @@ $result: map-merge($result, ($key: $value)); } } - @return $map; + @return $result; } // Replace `$search` with `$replace` in `$string` |
