15 lines
No EOL
264 B
SCSS
15 lines
No EOL
264 B
SCSS
@use "../vars" as *;
|
|
|
|
@mixin input-generic {
|
|
border-width: 2px;
|
|
border-radius: 4px;
|
|
border-style: solid;
|
|
border-color: rgba(0,0,0, 0.4);
|
|
background-color: rgba(0,0,0, 0.1);
|
|
font-family: $input-font;
|
|
|
|
&:focus,
|
|
&:active {
|
|
border-color: rgba(0,0,0, 1);
|
|
}
|
|
} |