[Scummvm-git-logs] scummvm-web master -> 1dc219f3b36861a8251b80e72ce9479e5816f270
Mataniko
mataniko at gmail.com
Fri Oct 9 19:16:16 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-web' repo located at https://github.com/scummvm/scummvm-web .
Summary:
1dc219f3b3 CSS: Fix compliation error
Commit: 1dc219f3b36861a8251b80e72ce9479e5816f270
https://github.com/scummvm/scummvm-web/commit/1dc219f3b36861a8251b80e72ce9479e5816f270
Author: Mataniko (mataniko at gmail.com)
Date: 2020-10-09T15:16:08-04:00
Commit Message:
CSS: Fix compliation error
Changed paths:
scss/abstracts/_mixins.scss
diff --git a/scss/abstracts/_mixins.scss b/scss/abstracts/_mixins.scss
index d876ef98..bfffb6a1 100644
--- a/scss/abstracts/_mixins.scss
+++ b/scss/abstracts/_mixins.scss
@@ -67,12 +67,14 @@
$theme-map: () !global;
@each $key, $submap in $map {
$value: map-get(map-get($themes, $theme), "#{$key}");
- $theme-map: map-merge(
- $theme-map,
- (
- $key: $value,
- )
- ) !global;
+ @if $theme-map {
+ $theme-map: map-merge(
+ $theme-map,
+ (
+ $key: $value,
+ )
+ ) !global;
+ }
}
@content;
$theme-map: null !global;
More information about the Scummvm-git-logs
mailing list