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

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schaller <devdot@users.noreply.github.com>2019-08-14 01:03:55 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-08-14 01:03:55 +0300
commit7149b6f0ebaafc6a3dc882a43cb376a7f9f7626e (patch)
treebe3f64ecab2d64904a969f568f62fe8e8202ade3
parent3130288ba694451365bf7aa1b78a2a4e3ae67740 (diff)
Function map-get-multiple now returns the correct variable (#29247)
-rw-r--r--bundlesize.config.json4
-rw-r--r--scss/_functions.scss2
2 files changed, 3 insertions, 3 deletions
diff --git a/bundlesize.config.json b/bundlesize.config.json
index 137c753523..eda41a22d1 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 c9edfff42a..0e77bf4b3f 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`