mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-29 22:27:25 +02:00
17 lines
375 B
SCSS
17 lines
375 B
SCSS
@mixin form-input {
|
|
border-radius: 2px;
|
|
border: 1px solid $border-clr;
|
|
font-size:em(18px);
|
|
@include transition(border-color 0.1s ease-in-out);
|
|
&:focus {
|
|
border-color: $blue-clr;
|
|
outline:none;
|
|
background: white;
|
|
}
|
|
&.extend {
|
|
width:100%;
|
|
}
|
|
@include placeholder {
|
|
color: rgba($text-3-clr,0.7);
|
|
}
|
|
}
|