Skip to content

Commit

Permalink
fix: lower css specificity to allow style override
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanobartoletti committed Nov 3, 2023
1 parent cd78496 commit 5119017
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime/components/SocialShare.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ $networks:
transition: all 0.25s ease-out;
@each $name, $color in $networks {
&.social-share-button--#{$name} {
&:where(.social-share-button--#{$name}) {
background-color: $color;
&:hover {
Expand All @@ -112,7 +112,7 @@ $networks:
}
}
.social-share-button__label {
:where(.social-share-button__label) {
padding: 0 0.5rem;
}
}
Expand Down

0 comments on commit 5119017

Please sign in to comment.