@sats-group/ui-lib 75.2.0 → 75.2.1
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
package/react/search/search.scss
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
@use '../../tokens/corner-radius';
|
|
2
2
|
@use '../../tokens/font-names';
|
|
3
|
-
@use '../../tokens/font-sizes';
|
|
4
3
|
@use '../../tokens/light';
|
|
5
4
|
@use '../../tokens/spacing';
|
|
6
5
|
@use '../../tokens/elevation';
|
|
@@ -137,6 +136,7 @@
|
|
|
137
136
|
border: none;
|
|
138
137
|
background: none;
|
|
139
138
|
color: inherit;
|
|
139
|
+
font-family: font-names.$brand, sans-serif;
|
|
140
140
|
flex: 1;
|
|
141
141
|
width: 100%;
|
|
142
142
|
height: 100%;
|
|
@@ -149,11 +149,12 @@
|
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
&--size-small {
|
|
152
|
-
|
|
152
|
+
font-size: 16px;
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
&--size-large {
|
|
156
|
-
|
|
156
|
+
font-size: 21px;
|
|
157
|
+
font-size: clamp(16px, 4vw, 21px);
|
|
157
158
|
}
|
|
158
159
|
|
|
159
160
|
&--variant-fixed {
|
package/react/text/text.scss
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use '../../tokens/corner-radius';
|
|
2
2
|
@use '../../tokens/font-sizes';
|
|
3
|
+
@use '../../tokens/font-names';
|
|
3
4
|
@use '../../tokens/light';
|
|
4
5
|
@use '../../tokens/spacing';
|
|
5
6
|
|
|
@@ -17,10 +18,12 @@
|
|
|
17
18
|
}
|
|
18
19
|
|
|
19
20
|
&__input {
|
|
20
|
-
|
|
21
|
+
font-size: 16px;
|
|
22
|
+
font-family: font-names.$brand, sans-serif;
|
|
21
23
|
border: 1px solid light.$ge-divider-default;
|
|
22
24
|
border-radius: corner-radius.$s;
|
|
23
|
-
padding: clamp(spacing.$xs, 2vw, spacing.$s)
|
|
25
|
+
padding: clamp(spacing.$xs, 2vw, spacing.$s)
|
|
26
|
+
clamp(spacing.$s, 2vw, spacing.$m);
|
|
24
27
|
line-height: $line-height;
|
|
25
28
|
background-color: light.$surface-primary-default;
|
|
26
29
|
color: light.$on-surface-primary-default;
|