@yomologic/react-ui 0.5.9 → 0.6.0
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/base.css +36 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +36 -0
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -3310,6 +3310,19 @@
|
|
|
3310
3310
|
--font-medium: 500;
|
|
3311
3311
|
--font-semibold: 600;
|
|
3312
3312
|
--font-bold: 700;
|
|
3313
|
+
--font-family-base:
|
|
3314
|
+
-apple-system,
|
|
3315
|
+
BlinkMacSystemFont,
|
|
3316
|
+
"Segoe UI",
|
|
3317
|
+
"Roboto",
|
|
3318
|
+
"Oxygen",
|
|
3319
|
+
"Ubuntu",
|
|
3320
|
+
"Cantarell",
|
|
3321
|
+
"Fira Sans",
|
|
3322
|
+
"Droid Sans",
|
|
3323
|
+
"Helvetica Neue",
|
|
3324
|
+
sans-serif;
|
|
3325
|
+
--font-family-input: var(--font-family-base);
|
|
3313
3326
|
--button-padding-xs-x: 0.5rem;
|
|
3314
3327
|
--button-padding-xs-y: 0.375rem;
|
|
3315
3328
|
--button-padding-sm-x: 0.75rem;
|
|
@@ -3481,6 +3494,29 @@
|
|
|
3481
3494
|
--dropdown-option-font-size-xl: 1.25rem;
|
|
3482
3495
|
--star-size: 1.5rem;
|
|
3483
3496
|
}
|
|
3497
|
+
input,
|
|
3498
|
+
textarea,
|
|
3499
|
+
select {
|
|
3500
|
+
font-family: var(--font-family-input);
|
|
3501
|
+
}
|
|
3502
|
+
textarea::-webkit-scrollbar {
|
|
3503
|
+
width: 8px;
|
|
3504
|
+
}
|
|
3505
|
+
textarea::-webkit-scrollbar-track {
|
|
3506
|
+
background: var(--color-surface);
|
|
3507
|
+
border-radius: 4px;
|
|
3508
|
+
}
|
|
3509
|
+
textarea::-webkit-scrollbar-thumb {
|
|
3510
|
+
background: var(--color-primary);
|
|
3511
|
+
border-radius: 4px;
|
|
3512
|
+
}
|
|
3513
|
+
textarea::-webkit-scrollbar-thumb:hover {
|
|
3514
|
+
background: var(--color-primary-hover);
|
|
3515
|
+
}
|
|
3516
|
+
textarea {
|
|
3517
|
+
scrollbar-width: thin;
|
|
3518
|
+
scrollbar-color: var(--color-primary) var(--color-surface);
|
|
3519
|
+
}
|
|
3484
3520
|
@media (min-width: 1024px) {
|
|
3485
3521
|
:root {
|
|
3486
3522
|
--checkbox-label-font-size-xs: var(--typography-caption, 0.6875rem);
|