Files
tf_code/packages/ui/src/components/input.css
2025-12-10 15:17:02 -06:00

26 lines
532 B
CSS

[data-component="input"] {
width: 100%;
/* [data-slot="input-label"] {} */
[data-slot="input-input"] {
width: 100%;
color: var(--text-strong);
/* text-14-regular */
font-family: var(--font-family-sans);
font-size: 14px;
font-style: normal;
font-weight: var(--font-weight-regular);
line-height: var(--line-height-large); /* 142.857% */
letter-spacing: var(--letter-spacing-normal);
&:focus {
outline: none;
}
&::placeholder {
color: var(--text-weak);
}
}
}