@appartmint/mint 2.2.3 → 2.3.0

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@appartmint/mint",
3
3
  "author": "App Art Mint LLC",
4
- "version": "2.2.3",
4
+ "version": "2.3.0",
5
5
  "license": "MIT",
6
6
  "description": "The front-end TS/SCSS framework of App Art Mint",
7
7
  "keywords": [
@@ -104,12 +104,12 @@
104
104
  }
105
105
 
106
106
  /// Alt Texture Styles
107
- @if list.length($texture-alt-bg) {
107
+ @if $texture-alt-bg and list.length($texture-alt-bg) > 0 {
108
108
  @for $num from 1 through list.length($texture-alt-bg) {
109
109
  #{class(texture-#{$num})} {
110
110
  #{class(content)} {
111
111
  &::after {
112
- background-image: url('#{list.nth($texture-alt-bg, $num)}');
112
+ background-image: url(#{list.nth($texture-alt-bg, $num)});
113
113
  }
114
114
  }
115
115
  }