inline-input.css 348 B

1234567891011121314151617
  1. [data-component="inline-input"] {
  2. color: inherit;
  3. background: transparent;
  4. border: 0;
  5. border-radius: var(--radius-md);
  6. padding: 0;
  7. min-width: 0;
  8. font: inherit;
  9. letter-spacing: inherit;
  10. line-height: inherit;
  11. box-sizing: border-box;
  12. &:focus {
  13. outline: none;
  14. box-shadow: 0 0 0 1px var(--border-interactive-focus);
  15. }
  16. }