@appartmint/mint 1.0.14 → 1.0.15

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": "1.0.14",
4
+ "version": "1.0.15",
5
5
  "license": "MIT",
6
6
  "description": "The front-end TS/SCSS framework of App Art Mint",
7
7
  "keywords": [
@@ -88,6 +88,9 @@ main {
88
88
  justify-content: center;
89
89
  flex-grow: 1;
90
90
  width: 100%;
91
+ padding: 0.25rem;
92
+
93
+ @include fluid(padding, map-get($break, xs) * 1px, map-get($break, sm) * 1px, 4px, 16px);
91
94
 
92
95
  &+:not(#{prefix(footer-partial)}) {
93
96
  height: 0;
@@ -755,7 +755,7 @@ $bootstrap5: false !default;
755
755
  }
756
756
 
757
757
  @if not(type-of($u1) == 'string' and type-of($u2) == 'string' and type-of($u3) == 'string' and type-of($u4) == 'string') {
758
- @error 'The fluid mixin requires numbers for the width and size arguments.';
758
+ @error 'The fluid mixin requires numbers with units for the width and size arguments.';
759
759
  }
760
760
 
761
761
  @if not($u1 == $u2 and $u1 == $u3 and $u1 == $u4) {