@lucca-front/scss 10.0.5 → 10.0.7

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucca-front/scss",
3
- "version": "10.0.5",
3
+ "version": "10.0.7",
4
4
  "description": "A Sass framework for Lucca products.",
5
5
  "main": "src/main.scss",
6
6
  "scripts": {},
@@ -23,6 +23,6 @@
23
23
  "normalize.css": "^8.0.0"
24
24
  },
25
25
  "peerDependencies": {
26
- "@lucca-front/icons": "v10.0.5"
26
+ "@lucca-front/icons": "v10.0.7"
27
27
  }
28
28
  }
@@ -57,6 +57,10 @@
57
57
  --commons-banner-height: 50px;
58
58
  --commons-font-family: 'Source Sans Pro', Tahoma, sans-serif;
59
59
  --commons-transition: all 150ms ease;
60
+ --commons-divider-width: 1px;
61
+ --commons-divider-color: var(--palettes-grey-200);
62
+ --commons-divider-style: solid;
63
+ --commons-divider-border: var(--commons-divider-width) var(--commons-divider-style) var(--commons-divider-color);
60
64
  }
61
65
 
62
66
  html {
@@ -28,6 +28,7 @@ $whiteSpace: 'normal', 'nowrap';
28
28
  $float: 'left', 'right';
29
29
  $verticalAlign: 'baseline', 'sub', 'super', 'text-top', 'text-bottom', 'middle', 'top', 'bottom';
30
30
  $position: 'absolute', 'relative', 'static', 'fixed', 'sticky';
31
+ $decoration: 'underline', 'none';
31
32
 
32
33
  @mixin cssvars($name, $properties, $after: '') {
33
34
  @each $key, $value in $properties {
@@ -1,10 +1,2 @@
1
1
  @mixin vars {
2
- @at-root {
3
- :root {
4
- --commons-divider-width: 1px;
5
- --commons-divider-color: var(--palettes-grey-200);
6
- --commons-divider-style: solid;
7
- --commons-divider-border: var(--commons-divider-width) var(--commons-divider-style) var(--commons-divider-color);
8
- }
9
- }
10
2
  }
@@ -62,6 +62,7 @@
62
62
  @include core.classes('font-style', core.$fontStyle);
63
63
  @include core.classes('pointer-events', core.$pointerEvents);
64
64
  @include core.classes('text-align', core.$textAlign);
65
+ @include core.classes('text-decoration', core.$decoration);
65
66
 
66
67
  @media (prefers-reduced-motion: no-preference) {
67
68
  @include core.classes('scroll-behavior', core.$scrollBehavior);
@@ -122,6 +123,10 @@
122
123
  color: var(--palettes-grey-400) !important;
123
124
  }
124
125
 
126
+ .u-textDefault {
127
+ color: var(--palettes-grey-700) !important;
128
+ }
129
+
125
130
  .u-ellipsis {
126
131
  @include text.ellipsis;
127
132
  }