mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
34 lines
511 B
SCSS
34 lines
511 B
SCSS
@import 'variables';
|
|
|
|
.searchButton {
|
|
padding: .65rem .85rem;
|
|
text-align: center;
|
|
line-height: 1;
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
margin-right: $spacer / 4;
|
|
|
|
&:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
svg {
|
|
fill: $text-color-light;
|
|
width: 21px;
|
|
height: 21px;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
svg {
|
|
fill: $brand-cyan;
|
|
}
|
|
}
|
|
|
|
&:active {
|
|
svg {
|
|
fill: darken($brand-cyan, 30%);
|
|
}
|
|
}
|
|
}
|