claritas-web-framework 8.5.7 → 8.5.9

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.
Files changed (86) hide show
  1. package/.prettierrc +10 -10
  2. package/README.md +1 -1
  3. package/dist/index.css +1 -1
  4. package/index.html +20 -20
  5. package/index.js +2 -2
  6. package/package.json +33 -33
  7. package/sass/_functions.scss +55 -55
  8. package/sass/_helpers.scss +8 -8
  9. package/sass/_mixins.scss +12 -12
  10. package/sass/_modules.scss +30 -30
  11. package/sass/_reboot.scss +264 -265
  12. package/sass/_root.scss +56 -56
  13. package/sass/_utilities.scss +17 -17
  14. package/sass/_variables.scss +445 -449
  15. package/sass/helpers/_container.scss +11 -11
  16. package/sass/helpers/_embed.scss +36 -36
  17. package/sass/helpers/_grid.scss +53 -53
  18. package/sass/helpers/_image.scss +5 -5
  19. package/sass/helpers/_link.scss +15 -15
  20. package/sass/helpers/_rfs.scss +303 -303
  21. package/sass/helpers/_screenReader.scss +13 -13
  22. package/sass/helpers/_wrap.scss +5 -5
  23. package/sass/index.scss +12 -12
  24. package/sass/mixins/_breakpoints.scss +133 -133
  25. package/sass/mixins/_button.scss +116 -116
  26. package/sass/mixins/_caret.scss +41 -41
  27. package/sass/mixins/_clearfix.scss +7 -7
  28. package/sass/mixins/_colors.scss +23 -23
  29. package/sass/mixins/_container.scss +21 -21
  30. package/sass/mixins/_gradient.scss +55 -55
  31. package/sass/mixins/_grid.scss +156 -156
  32. package/sass/mixins/_group.scss +70 -70
  33. package/sass/mixins/_list.scss +18 -18
  34. package/sass/mixins/_screenReader.scss +22 -22
  35. package/sass/mixins/_wrap.scss +7 -7
  36. package/sass/modules/_alert.scss +60 -60
  37. package/sass/modules/_breadcrumbs.scss +43 -43
  38. package/sass/modules/_button.scss +170 -172
  39. package/sass/modules/_card.scss +107 -107
  40. package/sass/modules/_close.scss +59 -59
  41. package/sass/modules/_details.scss +48 -48
  42. package/sass/modules/_dialog.scss +47 -47
  43. package/sass/modules/_dropdown.scss +44 -43
  44. package/sass/modules/_form.scss +261 -263
  45. package/sass/modules/_list.scss +78 -78
  46. package/sass/modules/_loader.scss +183 -183
  47. package/sass/modules/_modal.scss +45 -45
  48. package/sass/modules/_nav.scss +136 -136
  49. package/sass/modules/_pill.scss +61 -61
  50. package/sass/modules/_table.scss +96 -96
  51. package/sass/modules/_tabs.scss +88 -93
  52. package/sass/modules/_tag.scss +72 -72
  53. package/sass/modules/_tile.scss +101 -101
  54. package/sass/modules/_tooltip.scss +108 -108
  55. package/sass/modules/form/_checkbox.scss +78 -78
  56. package/sass/modules/form/_file.scss +149 -149
  57. package/sass/modules/form/_formFieldGroup.scss +60 -60
  58. package/sass/modules/form/_output.scss +6 -6
  59. package/sass/modules/form/_progress.scss +55 -55
  60. package/sass/modules/form/_radio.scss +57 -57
  61. package/sass/modules/form/_range.scss +144 -144
  62. package/sass/modules/form/_select.scss +22 -22
  63. package/sass/modules/form/_text.scss +28 -28
  64. package/sass/modules/form/_textarea.scss +3 -3
  65. package/sass/modules/form/_toggle.scss +68 -68
  66. package/sass/utilities/_align.scss +25 -25
  67. package/sass/utilities/_border.scss +59 -59
  68. package/sass/utilities/_colors.scss +76 -76
  69. package/sass/utilities/_display.scss +25 -25
  70. package/sass/utilities/_flex.scss +65 -65
  71. package/sass/utilities/_float.scss +17 -17
  72. package/sass/utilities/_order.scss +23 -23
  73. package/sass/utilities/_overflow.scss +25 -25
  74. package/sass/utilities/_pointerEvents.scss +17 -17
  75. package/sass/utilities/_position.scss +59 -59
  76. package/sass/utilities/_shadow.scss +7 -7
  77. package/sass/utilities/_size.scss +118 -118
  78. package/sass/utilities/_spacing.scss +107 -107
  79. package/sass/utilities/_translate.scss +15 -15
  80. package/sass/utilities/_typography.scss +62 -62
  81. package/sass/utilities/_visibility.scss +17 -17
  82. package/sass/utilities/_zIndex.scss +15 -15
  83. package/tests.js +5 -5
  84. package/webpack.config.js +27 -27
  85. package/webpack.plugins.js +15 -15
  86. package/webpack.rules.js +8 -8
@@ -1,65 +1,65 @@
1
- @use "sass:map";
2
- @use "./../variables" as *;
3
- @use "./../mixins/breakpoints" as *;
4
-
5
- $flex-directions: (row, column, row-reverse, column-reverse) !default;
6
- $flex-wraps: (wrap, nowrap, wrap-reverse) !default;
7
- $flex-justifications: (flex-start, flex-end, center, space-between, space-around, space-evenly) !default;
8
- $flex-item-alignments: (auto, flex-start, flex-end, center, baseline, stretch) !default;
9
- $flex-content-alignments: (flex-start, flex-end, center, space-between, space-around, stretch) !default;
10
-
11
- @each $breakpoint in map.keys($breakpoints) {
12
- @include media-breakpoint-up($breakpoint) {
13
- $infix: breakpoint-infix($breakpoint, $breakpoints);
14
-
15
- @each $value in $flex-directions {
16
- .flex-direction-#{$infix}-#{$value} {
17
- flex-direction: #{$value} !important;
18
- }
19
- }
20
-
21
- @each $value in $flex-wraps {
22
- .flex-wrap-#{$infix}-#{$value} {
23
- flex-wrap: #{$value} !important;
24
- }
25
- }
26
-
27
- @each $value in $flex-justifications {
28
- .justify-content-#{$infix}-#{$value} {
29
- justify-content: #{$value} !important;
30
- }
31
- }
32
-
33
- @each $value in $flex-item-alignments {
34
- .align-items-#{$infix}-#{$value} {
35
- align-items: #{$value} !important;
36
- }
37
- }
38
-
39
- @each $value in $flex-content-alignments {
40
- .align-content-#{$infix}-#{$value} {
41
- align-content: #{$value} !important;
42
- }
43
- }
44
-
45
- @each $value in $flex-content-alignments {
46
- .align-self-#{$infix}-#{$value} {
47
- align-self: #{$value} !important;
48
- }
49
- }
50
-
51
- @for $value from 0 through 1 {
52
- .flex-grow-#{$infix}-#{$value} {
53
- flex-grow: #{$value} !important;
54
- }
55
-
56
- .flex-shrink-#{$infix}-#{$value} {
57
- flex-shrink: #{$value} !important;
58
- }
59
- }
60
-
61
- .flex-#{$infix}-fill {
62
- flex: 1 1 auto !important;
63
- }
64
- }
65
- }
1
+ @use "sass:map";
2
+ @use "./../variables" as *;
3
+ @use "./../mixins/breakpoints" as *;
4
+
5
+ $flex-directions: (row, column, row-reverse, column-reverse) !default;
6
+ $flex-wraps: (wrap, nowrap, wrap-reverse) !default;
7
+ $flex-justifications: (flex-start, flex-end, center, space-between, space-around, space-evenly) !default;
8
+ $flex-item-alignments: (auto, flex-start, flex-end, center, baseline, stretch) !default;
9
+ $flex-content-alignments: (flex-start, flex-end, center, space-between, space-around, stretch) !default;
10
+
11
+ @each $breakpoint in map.keys($breakpoints) {
12
+ @include media-breakpoint-up($breakpoint) {
13
+ $infix: breakpoint-infix($breakpoint, $breakpoints);
14
+
15
+ @each $value in $flex-directions {
16
+ .flex-direction-#{$infix}-#{$value} {
17
+ flex-direction: #{$value} !important;
18
+ }
19
+ }
20
+
21
+ @each $value in $flex-wraps {
22
+ .flex-wrap-#{$infix}-#{$value} {
23
+ flex-wrap: #{$value} !important;
24
+ }
25
+ }
26
+
27
+ @each $value in $flex-justifications {
28
+ .justify-content-#{$infix}-#{$value} {
29
+ justify-content: #{$value} !important;
30
+ }
31
+ }
32
+
33
+ @each $value in $flex-item-alignments {
34
+ .align-items-#{$infix}-#{$value} {
35
+ align-items: #{$value} !important;
36
+ }
37
+ }
38
+
39
+ @each $value in $flex-content-alignments {
40
+ .align-content-#{$infix}-#{$value} {
41
+ align-content: #{$value} !important;
42
+ }
43
+ }
44
+
45
+ @each $value in $flex-content-alignments {
46
+ .align-self-#{$infix}-#{$value} {
47
+ align-self: #{$value} !important;
48
+ }
49
+ }
50
+
51
+ @for $value from 0 through 1 {
52
+ .flex-grow-#{$infix}-#{$value} {
53
+ flex-grow: #{$value} !important;
54
+ }
55
+
56
+ .flex-shrink-#{$infix}-#{$value} {
57
+ flex-shrink: #{$value} !important;
58
+ }
59
+ }
60
+
61
+ .flex-#{$infix}-fill {
62
+ flex: 1 1 auto !important;
63
+ }
64
+ }
65
+ }
@@ -1,17 +1,17 @@
1
- @use "sass:map";
2
- @use "./../variables" as *;
3
- @use "./../mixins/breakpoints" as *;
4
-
5
- $floats: (left, right, none) !default;
6
-
7
- @each $breakpoint in map.keys($breakpoints) {
8
- @include media-breakpoint-up($breakpoint) {
9
- $infix: breakpoint-infix($breakpoint, $breakpoints);
10
-
11
- @each $value in $floats {
12
- .float-#{$infix}-#{$value} {
13
- float: #{$value} !important;
14
- }
15
- }
16
- }
17
- }
1
+ @use "sass:map";
2
+ @use "./../variables" as *;
3
+ @use "./../mixins/breakpoints" as *;
4
+
5
+ $floats: (left, right, none) !default;
6
+
7
+ @each $breakpoint in map.keys($breakpoints) {
8
+ @include media-breakpoint-up($breakpoint) {
9
+ $infix: breakpoint-infix($breakpoint, $breakpoints);
10
+
11
+ @each $value in $floats {
12
+ .float-#{$infix}-#{$value} {
13
+ float: #{$value} !important;
14
+ }
15
+ }
16
+ }
17
+ }
@@ -1,23 +1,23 @@
1
- @use "sass:map";
2
- @use "./../variables" as *;
3
- @use "./../mixins/breakpoints" as *;
4
-
5
- @each $breakpoint in map.keys($breakpoints) {
6
- @include media-breakpoint-up($breakpoint) {
7
- $infix: breakpoint-infix($breakpoint, $breakpoints);
8
-
9
- @for $value from 0 through 12 {
10
- .order-#{$infix}-#{$value} {
11
- order: #{$value} !important;
12
- }
13
- }
14
-
15
- .order-#{$infix}-first {
16
- order: -1 !important;
17
- }
18
-
19
- .order-#{$infix}-last {
20
- order: 13 !important;
21
- }
22
- }
23
- }
1
+ @use "sass:map";
2
+ @use "./../variables" as *;
3
+ @use "./../mixins/breakpoints" as *;
4
+
5
+ @each $breakpoint in map.keys($breakpoints) {
6
+ @include media-breakpoint-up($breakpoint) {
7
+ $infix: breakpoint-infix($breakpoint, $breakpoints);
8
+
9
+ @for $value from 0 through 12 {
10
+ .order-#{$infix}-#{$value} {
11
+ order: #{$value} !important;
12
+ }
13
+ }
14
+
15
+ .order-#{$infix}-first {
16
+ order: -1 !important;
17
+ }
18
+
19
+ .order-#{$infix}-last {
20
+ order: 13 !important;
21
+ }
22
+ }
23
+ }
@@ -1,25 +1,25 @@
1
- @use "sass:map";
2
- @use "./../variables" as *;
3
- @use "./../mixins/breakpoints" as *;
4
-
5
- $overflows: (auto, hidden, visible, scroll) !default;
6
-
7
- @each $breakpoint in map.keys($breakpoints) {
8
- @include media-breakpoint-up($breakpoint) {
9
- $infix: breakpoint-infix($breakpoint, $breakpoints);
10
-
11
- @each $value in $overflows {
12
- .overflow-#{$infix}-#{$value} {
13
- overflow: #{$value} !important;
14
- }
15
-
16
- .overflow-x-#{$infix}-#{$value} {
17
- overflow-x: #{$value} !important;
18
- }
19
-
20
- .overflow-y-#{$infix}-#{$value} {
21
- overflow-y: #{$value} !important;
22
- }
23
- }
24
- }
25
- }
1
+ @use "sass:map";
2
+ @use "./../variables" as *;
3
+ @use "./../mixins/breakpoints" as *;
4
+
5
+ $overflows: (auto, hidden, visible, scroll) !default;
6
+
7
+ @each $breakpoint in map.keys($breakpoints) {
8
+ @include media-breakpoint-up($breakpoint) {
9
+ $infix: breakpoint-infix($breakpoint, $breakpoints);
10
+
11
+ @each $value in $overflows {
12
+ .overflow-#{$infix}-#{$value} {
13
+ overflow: #{$value} !important;
14
+ }
15
+
16
+ .overflow-x-#{$infix}-#{$value} {
17
+ overflow-x: #{$value} !important;
18
+ }
19
+
20
+ .overflow-y-#{$infix}-#{$value} {
21
+ overflow-y: #{$value} !important;
22
+ }
23
+ }
24
+ }
25
+ }
@@ -1,17 +1,17 @@
1
- @use "sass:map";
2
- @use "./../variables" as *;
3
- @use "./../mixins/breakpoints" as *;
4
-
5
- $pointer-events: (auto, none) !default;
6
-
7
- @each $breakpoint in map.keys($breakpoints) {
8
- @include media-breakpoint-up($breakpoint) {
9
- $infix: breakpoint-infix($breakpoint, $breakpoints);
10
-
11
- @each $value in $pointer-events {
12
- .pointer-events-#{$infix}-#{$value} {
13
- pointer-events: #{$value} !important;
14
- }
15
- }
16
- }
17
- }
1
+ @use "sass:map";
2
+ @use "./../variables" as *;
3
+ @use "./../mixins/breakpoints" as *;
4
+
5
+ $pointer-events: (auto, none) !default;
6
+
7
+ @each $breakpoint in map.keys($breakpoints) {
8
+ @include media-breakpoint-up($breakpoint) {
9
+ $infix: breakpoint-infix($breakpoint, $breakpoints);
10
+
11
+ @each $value in $pointer-events {
12
+ .pointer-events-#{$infix}-#{$value} {
13
+ pointer-events: #{$value} !important;
14
+ }
15
+ }
16
+ }
17
+ }
@@ -1,59 +1,59 @@
1
- @use "sass:map";
2
- @use "./../variables" as *;
3
- @use "./../mixins/breakpoints" as *;
4
-
5
- $positions: (static, relative, absolute, fixed, sticky) !default;
6
- $position-ints: (0, 25, 50, 75, 100) !default;
7
-
8
- @each $breakpoint in map.keys($breakpoints) {
9
- @include media-breakpoint-up($breakpoint) {
10
- $infix: breakpoint-infix($breakpoint, $breakpoints);
11
-
12
- @each $value in $positions {
13
- .position-#{$infix}-#{$value} {
14
- position: #{$value} !important;
15
- z-index: map.get($zindexes, $value);
16
- }
17
- }
18
-
19
- @each $value in $position-ints {
20
- .top-#{$infix}-#{$value} {
21
- top: #{$value}#{"%"} !important;
22
- }
23
-
24
- .right-#{$infix}-#{$value} {
25
- right: #{$value}#{"%"} !important;
26
- }
27
-
28
- .bottom-#{$infix}-#{$value} {
29
- bottom: #{$value}#{"%"} !important;
30
- }
31
-
32
- .left-#{$infix}-#{$value} {
33
- left: #{$value}#{"%"} !important;
34
- }
35
- }
36
- }
37
- }
38
-
39
- .position--fixed-top {
40
- position: fixed !important;
41
- top: 0 !important;
42
- right: 0 !important;
43
- left: 0 !important;
44
- z-index: $zindex-fixed;
45
- }
46
-
47
- .positon--fixed-bottom {
48
- position: fixed !important;
49
- right: 0 !important;
50
- bottom: 0 !important;
51
- left: 0 !important;
52
- z-index: $zindex-fixed;
53
- }
54
-
55
- .position--sticky-top {
56
- position: sticky !important;
57
- top: 0 !important;
58
- z-index: $zindex-sticky;
59
- }
1
+ @use "sass:map";
2
+ @use "./../variables" as *;
3
+ @use "./../mixins/breakpoints" as *;
4
+
5
+ $positions: (static, relative, absolute, fixed, sticky) !default;
6
+ $position-ints: (0, 25, 50, 75, 100) !default;
7
+
8
+ @each $breakpoint in map.keys($breakpoints) {
9
+ @include media-breakpoint-up($breakpoint) {
10
+ $infix: breakpoint-infix($breakpoint, $breakpoints);
11
+
12
+ @each $value in $positions {
13
+ .position-#{$infix}-#{$value} {
14
+ position: #{$value} !important;
15
+ z-index: map.get($zindexes, $value);
16
+ }
17
+ }
18
+
19
+ @each $value in $position-ints {
20
+ .top-#{$infix}-#{$value} {
21
+ top: #{$value}#{"%"} !important;
22
+ }
23
+
24
+ .right-#{$infix}-#{$value} {
25
+ right: #{$value}#{"%"} !important;
26
+ }
27
+
28
+ .bottom-#{$infix}-#{$value} {
29
+ bottom: #{$value}#{"%"} !important;
30
+ }
31
+
32
+ .left-#{$infix}-#{$value} {
33
+ left: #{$value}#{"%"} !important;
34
+ }
35
+ }
36
+ }
37
+ }
38
+
39
+ .position--fixed-top {
40
+ position: fixed !important;
41
+ top: 0 !important;
42
+ right: 0 !important;
43
+ left: 0 !important;
44
+ z-index: $zindex-fixed;
45
+ }
46
+
47
+ .positon--fixed-bottom {
48
+ position: fixed !important;
49
+ right: 0 !important;
50
+ bottom: 0 !important;
51
+ left: 0 !important;
52
+ z-index: $zindex-fixed;
53
+ }
54
+
55
+ .position--sticky-top {
56
+ position: sticky !important;
57
+ top: 0 !important;
58
+ z-index: $zindex-sticky;
59
+ }
@@ -1,7 +1,7 @@
1
- @use "./../variables" as *;
2
-
3
- @each $key, $value in $box-shadows {
4
- .box-shadow--#{$key} {
5
- box-shadow: #{$value} !important;
6
- }
7
- }
1
+ @use "./../variables" as *;
2
+
3
+ @each $key, $value in $box-shadows {
4
+ .box-shadow--#{$key} {
5
+ box-shadow: #{$value} !important;
6
+ }
7
+ }
@@ -1,118 +1,118 @@
1
- @use "sass:map";
2
- @use "sass:list";
3
- @use "./../variables" as *;
4
- @use "./../mixins/breakpoints" as *;
5
-
6
- @each $key in ("none", "auto") {
7
- .width--#{$key} {
8
- width: $key !important;
9
- }
10
-
11
- .height--#{$key} {
12
- height: $key !important;
13
- }
14
-
15
- .min-width--#{$key} {
16
- min-width: $key !important;
17
- }
18
-
19
- .min-height--#{$key} {
20
- min-height: $key !important;
21
- }
22
-
23
- .max-width--#{$key} {
24
- max-width: $key !important;
25
- }
26
-
27
- .max-height--#{$key} {
28
- max-height: $key !important;
29
- }
30
- }
31
-
32
- @each $breakpoint in map.keys($breakpoints) {
33
- @include media-breakpoint-up($breakpoint) {
34
- $infix: breakpoint-infix($breakpoint, $breakpoints);
35
-
36
- .width-#{$infix}-auto {
37
- width: auto !important;
38
- }
39
-
40
- .height-#{$infix}-auto {
41
- height: auto !important;
42
- }
43
-
44
- .min-width-#{$infix}-auto {
45
- min-width: auto !important;
46
- }
47
-
48
- .min-height-#{$infix}-auto {
49
- min-height: auto !important;
50
- }
51
-
52
- .min-width-#{$infix}-none {
53
- min-width: none !important;
54
- }
55
-
56
- .min-height-#{$infix}-none {
57
- min-height: none !important;
58
- }
59
-
60
- .max-width-#{$infix}-none {
61
- max-width: none !important;
62
- }
63
-
64
- .max-height-#{$infix}-none {
65
- max-height: none !important;
66
- }
67
-
68
- @each $value in $sizes {
69
- .width-#{$infix}-#{$value} {
70
- width: #{$value}#{"%"} !important;
71
- }
72
-
73
- .height-#{$infix}-#{$value} {
74
- height: #{$value}#{"%"} !important;
75
- }
76
-
77
- .max-width-#{$infix}-#{$value} {
78
- max-width: #{$value}#{"%"} !important;
79
- }
80
-
81
- .max-height-#{$infix}-#{$value} {
82
- max-height: #{$value}#{"%"} !important;
83
- }
84
-
85
- .min-width-#{$infix}-#{$value} {
86
- min-width: #{$value}#{"%"} !important;
87
- }
88
-
89
- .min-height-#{$infix}-#{$value} {
90
- min-height: #{$value}#{"%"} !important;
91
- }
92
-
93
- .width-#{$infix}-#{$value}-viewport {
94
- width: #{$value}vw !important;
95
- }
96
-
97
- .height-#{$infix}-#{$value}-viewport {
98
- height: #{$value}vh !important;
99
- }
100
-
101
- .max-width-#{$infix}-#{$value}-viewport {
102
- max-width: #{$value}vw !important;
103
- }
104
-
105
- .max-height-#{$infix}-#{$value}-viewport {
106
- max-height: #{$value}vh !important;
107
- }
108
-
109
- .min-width-#{$infix}-#{$value}-viewport {
110
- min-width: #{$value}vw !important;
111
- }
112
-
113
- .min-height-#{$infix}-#{$value}-viewport {
114
- min-height: #{$value}vh !important;
115
- }
116
- }
117
- }
118
- }
1
+ @use "sass:map";
2
+ @use "sass:list";
3
+ @use "./../variables" as *;
4
+ @use "./../mixins/breakpoints" as *;
5
+
6
+ @each $key in ("none", "auto") {
7
+ .width--#{$key} {
8
+ width: $key !important;
9
+ }
10
+
11
+ .height--#{$key} {
12
+ height: $key !important;
13
+ }
14
+
15
+ .min-width--#{$key} {
16
+ min-width: $key !important;
17
+ }
18
+
19
+ .min-height--#{$key} {
20
+ min-height: $key !important;
21
+ }
22
+
23
+ .max-width--#{$key} {
24
+ max-width: $key !important;
25
+ }
26
+
27
+ .max-height--#{$key} {
28
+ max-height: $key !important;
29
+ }
30
+ }
31
+
32
+ @each $breakpoint in map.keys($breakpoints) {
33
+ @include media-breakpoint-up($breakpoint) {
34
+ $infix: breakpoint-infix($breakpoint, $breakpoints);
35
+
36
+ .width-#{$infix}-auto {
37
+ width: auto !important;
38
+ }
39
+
40
+ .height-#{$infix}-auto {
41
+ height: auto !important;
42
+ }
43
+
44
+ .min-width-#{$infix}-auto {
45
+ min-width: auto !important;
46
+ }
47
+
48
+ .min-height-#{$infix}-auto {
49
+ min-height: auto !important;
50
+ }
51
+
52
+ .min-width-#{$infix}-none {
53
+ min-width: none !important;
54
+ }
55
+
56
+ .min-height-#{$infix}-none {
57
+ min-height: none !important;
58
+ }
59
+
60
+ .max-width-#{$infix}-none {
61
+ max-width: none !important;
62
+ }
63
+
64
+ .max-height-#{$infix}-none {
65
+ max-height: none !important;
66
+ }
67
+
68
+ @each $value in $sizes {
69
+ .width-#{$infix}-#{$value} {
70
+ width: #{$value}#{"%"} !important;
71
+ }
72
+
73
+ .height-#{$infix}-#{$value} {
74
+ height: #{$value}#{"%"} !important;
75
+ }
76
+
77
+ .max-width-#{$infix}-#{$value} {
78
+ max-width: #{$value}#{"%"} !important;
79
+ }
80
+
81
+ .max-height-#{$infix}-#{$value} {
82
+ max-height: #{$value}#{"%"} !important;
83
+ }
84
+
85
+ .min-width-#{$infix}-#{$value} {
86
+ min-width: #{$value}#{"%"} !important;
87
+ }
88
+
89
+ .min-height-#{$infix}-#{$value} {
90
+ min-height: #{$value}#{"%"} !important;
91
+ }
92
+
93
+ .width-#{$infix}-#{$value}-viewport {
94
+ width: #{$value}vw !important;
95
+ }
96
+
97
+ .height-#{$infix}-#{$value}-viewport {
98
+ height: #{$value}vh !important;
99
+ }
100
+
101
+ .max-width-#{$infix}-#{$value}-viewport {
102
+ max-width: #{$value}vw !important;
103
+ }
104
+
105
+ .max-height-#{$infix}-#{$value}-viewport {
106
+ max-height: #{$value}vh !important;
107
+ }
108
+
109
+ .min-width-#{$infix}-#{$value}-viewport {
110
+ min-width: #{$value}vw !important;
111
+ }
112
+
113
+ .min-height-#{$infix}-#{$value}-viewport {
114
+ min-height: #{$value}vh !important;
115
+ }
116
+ }
117
+ }
118
+ }