@sorocraft/ui 1.2.33 → 1.2.35

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,6 +1,7 @@
1
1
  @use "./colors.scss" as *;
2
2
  @use "./variables.scss" as *;
3
3
  @use "./functions/toRem.scss" as functions;
4
+ @use "./responsive.scss" as *;
4
5
  @use "sass:list";
5
6
  @use "sass:map";
6
7
 
@@ -88,12 +89,6 @@ $xxl: 1440px;
88
89
  }
89
90
  }
90
91
 
91
- @mixin media-sm-down {
92
- @media (max-width: #{$sm}) {
93
- @content;
94
- }
95
- }
96
-
97
92
  @mixin media-xs-down {
98
93
  @media (max-width: #{$xs}) {
99
94
  @content;
@@ -258,7 +253,7 @@ $xxl: 1440px;
258
253
  }
259
254
  }
260
255
  @if $sm {
261
- @include media-sm-down {
256
+ @include media(down, mobile-md) {
262
257
  font-size: $sm;
263
258
  line-height: calc($sm * 1.5);
264
259
  }