yummacss 1.0.1 → 1.0.2

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.
@@ -2,7 +2,11 @@
2
2
  * {
3
3
  color: inherit;
4
4
  margin: 0;
5
- font-weight: 500;
5
+ font-family: system-ui, sans-serif;
6
+ }
7
+
8
+ body {
9
+ font-family: inherit;
6
10
  }
7
11
 
8
12
  a {
@@ -20,9 +24,12 @@ html {
20
24
  scroll-behavior: smooth;
21
25
  }
22
26
 
23
- img {
27
+ img,
28
+ picture,
29
+ svg,
30
+ video {
24
31
  max-width: 100%;
25
- height: auto;
32
+ display: block;
26
33
  }
27
34
 
28
35
  ul {
@@ -33,4 +40,4 @@ ul {
33
40
  ::before,
34
41
  ::after {
35
42
  box-sizing: border-box;
36
- }
43
+ }
@@ -196,7 +196,7 @@
196
196
  }
197
197
  }
198
198
 
199
- .cc-#{$k}-#{$i} {
199
+ .cc-l-#{$k}-#{$i} {
200
200
  caret-color: mix(white, $v, $i * 10%);
201
201
  }
202
202
 
@@ -303,7 +303,7 @@
303
303
  caret-color: mix(black, $v, $i * 10%);
304
304
  }
305
305
 
306
- .h\:cc-#{$k}-#{$i} {
306
+ .h\:cc-d-#{$k}-#{$i} {
307
307
  &:hover {
308
308
  caret-color: mix(black, $v, $i * 10%);
309
309
  }
@@ -1017,33 +1017,9 @@ $utilities: (
1017
1017
  .min-h-#{$key} {
1018
1018
  min-height: $value;
1019
1019
  }
1020
-
1021
- .w-#{$key} {
1022
- width: $value;
1023
- }
1024
-
1025
- .max-w-#{$key} {
1026
- max-width: $value;
1027
- }
1028
-
1029
- .min-w-#{$key} {
1030
- min-width: $value;
1031
- }
1032
1020
  }
1033
1021
 
1034
1022
  @each $key, $value in $custom-width-values {
1035
- .h-#{$key} {
1036
- height: $value;
1037
- }
1038
-
1039
- .max-h-#{$key} {
1040
- max-height: $value;
1041
- }
1042
-
1043
- .min-h-#{$key} {
1044
- min-height: $value;
1045
- }
1046
-
1047
1023
  .w-#{$key} {
1048
1024
  width: $value;
1049
1025
  }