@deque/cauldron-styles 5.0.0-canary.4f3537bf → 5.0.0-canary.75d70780
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/dist/index.css +10 -3
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -94,6 +94,9 @@
|
|
|
94
94
|
--text-size-smaller: 13px;
|
|
95
95
|
--text-size-smallest: 12px;
|
|
96
96
|
|
|
97
|
+
/* fonts */
|
|
98
|
+
--base-font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
|
99
|
+
|
|
97
100
|
/* font weight */
|
|
98
101
|
--font-weight-thin: 100;
|
|
99
102
|
--font-weight-light: 300;
|
|
@@ -160,7 +163,7 @@ html {
|
|
|
160
163
|
}
|
|
161
164
|
|
|
162
165
|
body {
|
|
163
|
-
font-family:
|
|
166
|
+
font-family: var(--base-font-family);
|
|
164
167
|
font-style: normal;
|
|
165
168
|
font-weight: 400;
|
|
166
169
|
color: var(--text-color-base);
|
|
@@ -196,6 +199,11 @@ ul {
|
|
|
196
199
|
padding: 0;
|
|
197
200
|
}
|
|
198
201
|
|
|
202
|
+
button {
|
|
203
|
+
font-family: var(--base-font-family);
|
|
204
|
+
font-weight: 500;
|
|
205
|
+
}
|
|
206
|
+
|
|
199
207
|
button,
|
|
200
208
|
[role='button'] {
|
|
201
209
|
display: inline-block;
|
|
@@ -3398,11 +3406,10 @@ button.TooltipTabstop {
|
|
|
3398
3406
|
font-size: var(--text-size-smaller);
|
|
3399
3407
|
border: 1px solid var(--tag-border-color);
|
|
3400
3408
|
border-radius: 11px;
|
|
3401
|
-
display: flex;
|
|
3409
|
+
display: inline-flex;
|
|
3402
3410
|
justify-content: center;
|
|
3403
3411
|
align-items: center;
|
|
3404
3412
|
padding: 2px 8px;
|
|
3405
|
-
width: 90px;
|
|
3406
3413
|
font-weight: var(--font-weight-medium);
|
|
3407
3414
|
}
|
|
3408
3415
|
|
package/package.json
CHANGED