@chekinapp/tokens 0.0.29 → 0.0.31
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 +1 -1
- package/src/base/components.css +12 -0
- package/src/surfaces/guest.css +6 -0
package/package.json
CHANGED
package/src/base/components.css
CHANGED
|
@@ -324,4 +324,16 @@
|
|
|
324
324
|
--field-width: 100%;
|
|
325
325
|
--field-max-width: 296px;
|
|
326
326
|
--field-min-height: 48px;
|
|
327
|
+
|
|
328
|
+
/* ── Field (shared input/select/combobox/textarea/etc.) ─────────────── */
|
|
329
|
+
--field-border: var(--chekin-color-gray-3);
|
|
330
|
+
--field-border-activated: var(--chekin-color-gray-2);
|
|
331
|
+
--field-border-focused: var(--chekin-color-brand-blue);
|
|
332
|
+
--field-border-invalid: var(--error-message-color);
|
|
333
|
+
--field-label-font-size: 16px;
|
|
334
|
+
--field-label-raised-font-size: 14px;
|
|
335
|
+
--field-label-font-weight: var(--chekin-font-weight-medium);
|
|
336
|
+
--field-label-raised-font-weight: var(--chekin-font-weight-semibold);
|
|
337
|
+
--field-top-label-font-size: 14px;
|
|
338
|
+
--field-top-label-font-weight: var(--chekin-font-weight-medium);
|
|
327
339
|
}
|
package/src/surfaces/guest.css
CHANGED
|
@@ -52,4 +52,10 @@
|
|
|
52
52
|
|
|
53
53
|
--alert-default-text: hsl(222.2 84% 4.9%);
|
|
54
54
|
--alert-box-info-bg: #e3efff;
|
|
55
|
+
|
|
56
|
+
/* ── Field (shared input/select/combobox/textarea/etc.) ─────────────── */
|
|
57
|
+
--field-border: #777e91;
|
|
58
|
+
--field-border-activated: #777e91;
|
|
59
|
+
/*--field-label-font-size: 14px;*/
|
|
60
|
+
--field-label-font-weight: var(--chekin-font-weight-regular);
|
|
55
61
|
}
|