@asd20/ui 3.2.440 → 3.2.441
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
|
@@ -69,7 +69,9 @@ export default {
|
|
|
69
69
|
display: flex;
|
|
70
70
|
align-items: center;
|
|
71
71
|
flex-shrink: 0;
|
|
72
|
-
background:
|
|
72
|
+
background: var(--color__primary);
|
|
73
|
+
color: white;
|
|
74
|
+
// background: white;
|
|
73
75
|
flex-wrap: wrap;
|
|
74
76
|
border-bottom: 1px solid var(--color__tertiary);
|
|
75
77
|
|
|
@@ -88,20 +90,22 @@ export default {
|
|
|
88
90
|
|
|
89
91
|
h1 {
|
|
90
92
|
margin: 0;
|
|
91
|
-
font-size:
|
|
92
|
-
color: var(--
|
|
93
|
+
font-size: 1.25rem;
|
|
94
|
+
color: var(--color__on-primary);
|
|
93
95
|
flex-grow: 1;
|
|
94
96
|
width: 100%;
|
|
95
97
|
border-bottom: 1px solid var(--color__tertiary);
|
|
96
98
|
display: flex;
|
|
97
99
|
align-items: center;
|
|
100
|
+
font-family: var(--website-typography__font-family-headlines);
|
|
98
101
|
.asd20-icon {
|
|
99
102
|
margin: 0 space(0.5);
|
|
103
|
+
--line-color: white;
|
|
100
104
|
}
|
|
101
105
|
.version {
|
|
102
106
|
display: block;
|
|
103
|
-
font-size: 0.
|
|
104
|
-
color:
|
|
107
|
+
font-size: 0.65rem;
|
|
108
|
+
color: lightgray;
|
|
105
109
|
text-transform: uppercase;
|
|
106
110
|
margin-left: space(0.5);
|
|
107
111
|
margin-right: space(0.5);
|
|
@@ -119,8 +123,10 @@ export default {
|
|
|
119
123
|
margin-right: space(1);
|
|
120
124
|
height: space(1);
|
|
121
125
|
padding: space(0.5) 0;
|
|
122
|
-
--fill-one: #
|
|
123
|
-
--fill-two: #
|
|
126
|
+
--fill-one: #fff;
|
|
127
|
+
--fill-two: #ccc;
|
|
128
|
+
// --fill-one: #{asd20-color('brand-blue')};
|
|
129
|
+
// --fill-two: #{asd20-color('brand-gray')};
|
|
124
130
|
}
|
|
125
131
|
|
|
126
132
|
.asd20-button {
|