|
@@ -21,15 +21,21 @@ a {
|
|
|
|
|
|
#page {
|
|
|
background: #{map-deep-get($config-global, "color", "background", "default")};
|
|
|
- box-shadow: 0 0 30px rgba(#000, 0.2);
|
|
|
margin-left: auto;
|
|
|
margin-right: auto;
|
|
|
|
|
|
@extend %responsive-alignwide;
|
|
|
+
|
|
|
+ @include media(mobile) {
|
|
|
+ box-shadow: 0 0 30px rgba(#000, 0.2);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
body {
|
|
|
- background: #{map-deep-get($config-global, "color", "background", "light")};
|
|
|
+ background: #{map-deep-get($config-global, "color", "background", "white")};
|
|
|
+ @include media(mobile) {
|
|
|
+ background: #{map-deep-get($config-global, "color", "background", "light")};
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|