123456789101112131415161718192021222324252627282930 |
- // All HTML5 input types, with irrelevant ones commented out.
- // input[type="button"],
- // input[type="checkbox"],
- // input[type="color"],
- input[type="date"],
- input[type="datetime-local"],
- input[type="email"],
- input[type="file"],
- // input[type="hidden"],
- // input[type="image"],
- input[type="month"],
- input[type="number"],
- input[type="password"],
- // input[type="radio"],
- // input[type="range"],
- // input[type="reset"],
- input[type="search"],
- // input[type="submit"],
- input[type="tel"],
- input[type="text"],
- input[type="time"],
- input[type="url"],
- input[type="week"],
- textarea {
- @include input-base();
- @apply w-body-text-large;
- width: 100%;
- padding: theme('spacing.[1.5]') theme('spacing.5');
- min-height: rem($text-input-height);
- }
|