_input-text.scss 736 B

123456789101112131415161718192021222324252627282930
  1. // All HTML5 input types, with irrelevant ones commented out.
  2. // input[type="button"],
  3. // input[type="checkbox"],
  4. // input[type="color"],
  5. input[type="date"],
  6. input[type="datetime-local"],
  7. input[type="email"],
  8. input[type="file"],
  9. // input[type="hidden"],
  10. // input[type="image"],
  11. input[type="month"],
  12. input[type="number"],
  13. input[type="password"],
  14. // input[type="radio"],
  15. // input[type="range"],
  16. // input[type="reset"],
  17. input[type="search"],
  18. // input[type="submit"],
  19. input[type="tel"],
  20. input[type="text"],
  21. input[type="time"],
  22. input[type="url"],
  23. input[type="week"],
  24. textarea {
  25. @include input-base();
  26. @apply w-body-text-large;
  27. width: 100%;
  28. padding: theme('spacing.[1.5]') theme('spacing.5');
  29. min-height: rem($text-input-height);
  30. }