claritas-web-framework 8.0.12 → 8.0.14

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "claritas-web-framework",
3
- "version": "8.0.12",
4
- "updated": "02/08/2023",
3
+ "version": "8.0.14",
4
+ "updated": "04/08/2023",
5
5
  "description": "The CSS framework built for Claritas front end.",
6
6
  "main": "index.js",
7
7
  "scripts": {
@@ -22,7 +22,7 @@
22
22
  "find-unused-sass-variables": "^5.0.0",
23
23
  "html-webpack-plugin": "^5.5.3",
24
24
  "mini-css-extract-plugin": "^2.7.6",
25
- "prettier": "^3.0.0",
25
+ "prettier": "^3.0.1",
26
26
  "sass": "^1.64.2",
27
27
  "sass-loader": "^13.3.2",
28
28
  "stylelint": "^15.10.2",
@@ -102,7 +102,6 @@ $gutters: $spacers;
102
102
 
103
103
  /* ---------------------------------- links --------------------------------- */
104
104
  $link-shade-percentage: 20% !default;
105
- $link-shade-value: 0.8 !default;
106
105
  $link-decoration: none !default;
107
106
  $link-hover-decoration: underline !default;
108
107
 
@@ -12,7 +12,7 @@
12
12
  @mixin make-color($title) {
13
13
  --color: hsl(var(--#{$title}-h) var(--#{$title}-s) var(--#{$title}-l) / var(--#{$title}-a));
14
14
  --color-hover: hsl(
15
- var(--#{$title}-h) var(--#{$title}-s) calc(var(--#{$title}-l) * #{$link-shade-value}) / var(--#{$title}-a)
15
+ var(--#{$title}-h) var(--#{$title}-s) calc(var(--#{$title}-l) * #{$link-shade-percentage}) / var(--#{$title}-a)
16
16
  );
17
17
 
18
18
  color: var(--color) !important;
@@ -9,11 +9,7 @@
9
9
  }
10
10
 
11
11
  .form--field {
12
- @if $enable-margins {
13
- margin-bottom: var(--spacer);
14
- } @else {
15
- margin-bottom: 0;
16
- }
12
+ margin-bottom: var(--spacer);
17
13
 
18
14
  & .small,
19
15
  & small {