mail/src/sass/components/_input.scss

21 lines
375 B
SCSS
Raw Normal View History

.input-text {
background-color: white;
border-width: 1px;
border-style: solid;
border-color: $color-grey-lighter;
color: $color-grey;
font-size: $font-size-base;
padding: 8px 10px;
outline: none;
2013-12-06 11:11:57 -05:00
}
.input-text-error {
border-color: red;
}
.input-error-message {
margin: 5px 0;
padding: 0;
color: red;
font-size: em(13);
}