22 lines
435 B
SCSS
22 lines
435 B
SCSS
|
.github-button {
|
||
|
@extend %button;
|
||
|
width: #{300 / $base-font-size}rem;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
& path {
|
||
|
color: $light-primary-text-color;
|
||
|
}
|
||
|
&:hover path, &:active path {
|
||
|
fill: $white;
|
||
|
}
|
||
|
&:hover, &:active {
|
||
|
background-color: $light-secondary-text-color;
|
||
|
border-color: $light-secondary-text-color
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.github-icon {
|
||
|
margin-right: #{10 / $base-font-size}rem;
|
||
|
}
|