27 lines
401 B
SCSS
27 lines
401 B
SCSS
@import '../input.vars';
|
|
|
|
.input__button {
|
|
display: none;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
box-sizing: border-box;
|
|
width: $buttonWidth;
|
|
padding: 0 10px;
|
|
font-size: 16px;
|
|
border: 0;
|
|
background: #0aa;
|
|
border-radius: 0 $borderRadius $borderRadius 0;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: #06c5c5;
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|