correct bug where tel inputs weren't styled in a standard way

This commit is contained in:
Eric Schultz 2018-06-06 10:46:26 -05:00
parent 269f1a838e
commit 867fe73f05

View file

@ -2,7 +2,7 @@
@import 'mixins';
@mixin basicInputs {
input[type="text"], input, input[type="email"], input[type="number"], input[type="password"], select {
input[type="text"], input, input[type="email"], input[type="number"], input[type="password"], input[type="tel"], select {
@content;
}
}