input.css 500 B

1234567891011121314151617181920212223
  1. [data-component="input"] {
  2. /* [data-slot="input-label"] {} */
  3. [data-slot="input-input"] {
  4. color: var(--text-strong);
  5. /* text-14-regular */
  6. font-family: var(--font-family-sans);
  7. font-size: 14px;
  8. font-style: normal;
  9. font-weight: var(--font-weight-regular);
  10. line-height: var(--line-height-large); /* 142.857% */
  11. letter-spacing: var(--letter-spacing-normal);
  12. &:focus {
  13. outline: none;
  14. }
  15. &::placeholder {
  16. color: var(--text-weak);
  17. }
  18. }
  19. }