@esportsplus/ui 0.0.36 → 0.0.37

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
@@ -20,5 +20,5 @@
20
20
  "prepublishOnly": "npm run build"
21
21
  },
22
22
  "types": "./build/index.d.ts",
23
- "version": "0.0.36"
23
+ "version": "0.0.37"
24
24
  }
@@ -1,7 +1,6 @@
1
1
  @forward 'scss/border-radius';
2
2
  @forward 'scss/border-width';
3
3
  @forward 'scss/box-shadow';
4
- @forward 'scss/breakpoints';
5
4
  @forward 'scss/color';
6
5
  @forward 'scss/font-size';
7
6
  @forward 'scss/font-weight';
@@ -1,4 +1,4 @@
1
- @use '/lib';
1
+ @use '../../lib';
2
2
 
3
3
  $color: (
4
4
  'black': (
@@ -18,7 +18,7 @@
18
18
  *
19
19
  */
20
20
 
21
- @use '/lib';
21
+ @use '../../lib';
22
22
 
23
23
  $state: (
24
24
  active: '&.--active',
@@ -1,13 +0,0 @@
1
- // @use '/lib';
2
-
3
- $breakpoints: 1400px 1000px 600px;
4
-
5
- // @mixin breakpoints() {
6
- // @each $breakpoint in $breakpoints {
7
- // @include lib.breakpoint(max-width, $breakpoint) {
8
- // &\:#{$breakpoint} {
9
- // @content;
10
- // }
11
- // }
12
- // }
13
- // }