Skip to content

Commit

Permalink
fix(theme): show only one carbon ad at a time
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Aug 21, 2023
1 parent 00dc1e6 commit 5ced0cc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/client/theme-default/components/VPCarbonAds.vue
Expand Up @@ -98,4 +98,12 @@ if (carbonOptions) {
.VPCarbonAds :deep(.carbon-poweredby:hover) {
color: var(--vp-carbon-ads-hover-poweredby-color);
}
.VPCarbonAds :deep(> div) {
display: none;
}
.VPCarbonAds :deep(> div:first-of-type) {
display: block;
}
</style>

0 comments on commit 5ced0cc

Please sign in to comment.