@nulllogic/scssleon 1.1.0 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@nulllogic/scssleon",
3
3
  "description": "Most advanced, simple and clean SCSS framework",
4
- "version": "1.1.0",
5
- "version_short": "1.1.0",
4
+ "version": "1.1.2",
5
+ "version_short": "1.1.2",
6
6
  "keywords": [
7
7
  "css",
8
8
  "sass",
package/scss/_config.scss CHANGED
@@ -21,11 +21,11 @@ $default-config: (
21
21
  // Container breakpoints
22
22
  $breakpoints-config: (
23
23
  breakpoints: (
24
- sm: 576px,
24
+ sm: 640px,
25
25
  md: 768px,
26
- lg: 992px,
27
- xl: 1200px,
28
- xxl: 1400px,
26
+ lg: 1024px,
27
+ xl: 1280px,
28
+ xxl: 1536px,
29
29
  ),
30
30
  ) !default;
31
31
 
@@ -15,17 +15,13 @@ $is-content-enabled: functions.get-config($config, 'enable.content');
15
15
  $color_scheme: functions.get-config($config, 'color-scheme');
16
16
 
17
17
  @if ($is-content-enabled) {
18
- @each $scheme in string.split(functions.get-config($config, 'color-scheme'), ' ') {
18
+ .content {
19
+ @each $tag, $properties in functions.get-theme($theme, 'content') {
19
20
 
20
- .content {
21
- @each $tag, $properties in functions.get-theme($theme, 'content') {
22
-
23
- // Only apply styling to elements, that stand right after `.content` class
24
- & > #{$tag} {
25
- @include mixins.generate-properties(#{$tag}, $properties, $config);
26
- }
21
+ // Only apply styling to elements, that stand right after `.content` class
22
+ & > #{$tag} {
23
+ @include mixins.generate-properties(#{$tag}, $properties, $config);
27
24
  }
28
25
  }
29
-
30
26
  }
31
27
  }