Skip to content

Commit

Permalink
fix: improve landing page viddeo shades
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhojang6 committed Dec 11, 2023
1 parent c4daa3e commit a2c1191
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion src/css/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,22 @@ html {
// TODO: breadcrumbs: false in docusaurus.config.js does not work
.theme-doc-breadcrumbs {
display: none;
}
}

[data-theme='light'] {
.mdx-hero-video__video::after,
.mdx-hero-video__placeholder::after {
width: 100%;
height: 100%;
content: ' ';
position: absolute;
top: 0;
left: 0;
background: linear-gradient(
to top,
rgba(var(--lsd-surface-primary), 1),
rgba(var(--lsd-surface-primary), 0.24),
rgba(var(--lsd-surface-primary), 0.05)
);
}
}

0 comments on commit a2c1191

Please sign in to comment.