mail/src/sass/components/_input.scss

26 lines
419 B
SCSS
Raw Normal View History

.input-text {
background-color: white;
border: 1px solid $color-grey-lighter;
color: $color-grey;
font-size: $font-size-base;
padding: 8px 10px;
outline: none;
2014-06-17 10:03:21 -04:00
// ios
border-radius: 0;
-webkit-appearance: none;
2013-12-06 11:11:57 -05:00
}
:invalid,
.ng-invalid,
.input-text-error {
border-color: red;
}
.input-error-message {
margin: 5px 0;
padding: 0;
color: red;
font-size: em(13);
}