1
0
Fork 0
blog/src/components/Search/SearchButton.module.scss

34 lines
439 B
SCSS
Raw Normal View History

2018-08-28 23:28:42 +02:00
@import 'variables';
.searchButton {
2019-10-02 13:35:50 +02:00
padding: 0.65rem 0.85rem;
text-align: center;
line-height: 1;
vertical-align: middle;
display: inline-block;
margin-right: $spacer / 4;
2018-08-28 23:28:42 +02:00
2019-10-02 13:35:50 +02:00
&:focus {
outline: 0;
}
2018-08-28 23:28:42 +02:00
2019-10-02 13:35:50 +02:00
svg {
fill: $text-color-light;
width: 21px;
height: 21px;
}
2018-08-28 23:28:42 +02:00
2019-10-02 13:35:50 +02:00
&:hover,
&:focus {
svg {
fill: $brand-cyan;
2018-08-28 23:28:42 +02:00
}
2019-10-02 13:35:50 +02:00
}
2018-08-28 23:28:42 +02:00
2019-10-02 13:35:50 +02:00
&:active {
svg {
fill: darken($brand-cyan, 30%);
2018-08-28 23:28:42 +02:00
}
2019-10-02 13:35:50 +02:00
}
2018-08-28 23:28:42 +02:00
}