Files
remark42/web/app/components/input/__button/input__button.scss
T
2018-02-02 19:32:32 +02:00

23 lines
377 B
SCSS

@import '../input.vars';
.input__button {
display: none;
position: absolute;
top: -1px;
right: -1px;
bottom: -1px;
box-sizing: border-box;
width: $buttonWidth;
padding: 0 10px;
font-size: 16px;
border: 0;
background: #00aaaa;
border-radius: 0 $borderRadius $borderRadius 0;
color: #fff;
cursor: pointer;
&:hover {
background: #06c5c5;
}
}