prlg-ui 1.8.41 → 1.8.43

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.
@@ -1,7 +1,7 @@
1
1
  @use './reset.scss';
2
2
  @use './colors.scss';
3
3
  @use './root-vars.scss';
4
- @use './mixins.scss';
4
+ @use './mixins.scss' as *;
5
5
  @use './fonts.scss';
6
6
  @use './animations.scss';
7
7
 
@@ -11,19 +11,19 @@
11
11
  padding: 0 10px;
12
12
  max-width: 768px; // Базовая ширина для мобильных
13
13
 
14
- @media screen and (min-width: 1010px) {
14
+ @include respond(lg) {
15
15
  max-width: 991px;
16
16
  }
17
17
 
18
- @media screen and (min-width: 1220px) {
18
+ @include respond(xl) {
19
19
  max-width: 1200px;
20
20
  }
21
21
 
22
- @media screen and (min-width: 1420px) {
22
+ @include respond(xxl) {
23
23
  max-width: 1400px;
24
24
  }
25
25
 
26
- @media screen and (min-width: 1620px) {
26
+ @include respond(xxxl) {
27
27
  max-width: 1600px;
28
28
  }
29
29
  }
@@ -119,7 +119,7 @@
119
119
  } @else if $breakpoint == xl {
120
120
  @media (min-width: 1280px) {
121
121
  @content;
122
- }
122
+ }
123
123
  } @else if $breakpoint == xxl {
124
124
  @media (min-width: 1420px) {
125
125
  @content;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "prlg-ui",
3
3
  "private": false,
4
- "version": "1.8.41",
4
+ "version": "1.8.43",
5
5
  "type": "module",
6
6
  "main": "dist/prlg-ui.umd.js",
7
7
  "module": "dist/prlg-ui.es.js",