Skip to content

Commit

Permalink
Fix for nodejs.org
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderby committed May 14, 2024
1 parent 1f8acd6 commit d3f12d0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/config/dynamic-theme-fixes.config
Expand Up @@ -18291,8 +18291,11 @@ IGNORE IMAGE ANALYSIS
nodejs.org

CSS
h1.special:is([data-theme=dark] *) {
background-image: linear-gradient(180deg, #fff, hsla(0, 0%, 100%, .8));
[data-theme="dark"] h1.special {
background-image: linear-gradient(180deg, #fff, hsla(0, 0%, 100%, .8)) !important;
}
[data-theme="light"] h1.special {
background-image: linear-gradient(180deg, ${#2c3437}, ${rgba(44, 52, 55, .8)}); !important;
}

================================
Expand Down

0 comments on commit d3f12d0

Please sign in to comment.