@asd20/ui 3.2.590 → 3.2.592

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
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.590",
8
+ "version": "3.2.592",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -77,22 +77,22 @@ $factoid-rule: var(--website-page__alternate-background-t80);
77
77
 
78
78
  &:first-child:nth-last-child(2),
79
79
  &:first-child:nth-last-child(2) ~ .asd20-factoid {
80
- width: calc(100% / 2);
80
+ width: (100% / 2);
81
81
  }
82
82
 
83
83
  &:first-child:nth-last-child(3),
84
84
  &:first-child:nth-last-child(3) ~ .asd20-factoid,
85
85
  &:first-child:nth-last-child(6),
86
86
  &:first-child:nth-last-child(6) ~ .asd20-factoid {
87
- width: calc(100% / 3);
87
+ width: (100% / 3);
88
88
  }
89
89
 
90
90
  &:first-child:nth-last-child(7),
91
91
  &:first-child:nth-last-child(7) ~ .asd20-factoid {
92
- width: calc(100% / 4);
92
+ width: (100% / 4);
93
93
  }
94
94
  &:first-child:nth-last-child(7) ~ .asd20-factoid:nth-child(n + 6) {
95
- width: calc(100% / 3);
95
+ width: (100% / 3);
96
96
  }
97
97
  }
98
98
  }
@@ -83,7 +83,7 @@ export default {
83
83
  }
84
84
 
85
85
  & > * {
86
- flex-basis: calc(100% / 3);
86
+ flex-basis: (100% / 3);
87
87
  }
88
88
  }
89
89
 
@@ -118,10 +118,10 @@ $logo-width: 50vw;
118
118
  align-items: center;
119
119
 
120
120
  &--condensed {
121
- height: calc($navbar-size / 2);
121
+ height: $navbar-size / 2;
122
122
  .menu-button,
123
123
  .search-button {
124
- height: calc($navbar-size / 2);
124
+ height: $navbar-size / 2;
125
125
  span {
126
126
  display: none;
127
127
  }
@@ -1,6 +1,6 @@
1
1
 
2
2
  @function strip-unit($value) {
3
- @return unquote("calc($value / ($value * 0 + 1))");
3
+ @return $value / ($value * 0 + 1);
4
4
  }
5
5
 
6
6
  @mixin fluid-type($min-font-size, $max-font-size, $min-vw: 320px, $max-vw: 1200px, ) {
@@ -76,8 +76,8 @@ $rem-font-size: 16px;
76
76
  $base-font-size: 16px;
77
77
  $line-height: 1.4;
78
78
  $base-line-split: 3;
79
- $base-line-height: ceil(calc($line-height * $base-font-size / $base-line-split));
80
- $line-height: calc($base-line-height * $base-line-split / $base-font-size);
79
+ $base-line-height: ceil($line-height * $base-font-size / $base-line-split);
80
+ $line-height: $base-line-height * $base-line-split / $base-font-size;
81
81
  $copy-font: $base-font-size - 4;
82
82
 
83
83
  $font-family-headlines: var(--website-typography__font-family-headlines);