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 5, 2023
1 parent 2e222c1 commit 9eb1e91
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/css/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,20 @@ html {
// TODO: breadcrumbs: false in docusaurus.config.js does not work
.theme-doc-breadcrumbs {
display: none;
}
}

.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 9eb1e91

Please sign in to comment.