Skip to content
This repository was archived by the owner on Feb 15, 2025. It is now read-only.

Commit aff4d17

Browse files
committed
fixed border
1 parent bb3f629 commit aff4d17

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/components/other/SectionScroller/components/SectionLeftItem/styles.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.Container {
22
width: 100%;
33
position: relative;
4+
margin-left: -1px;
45
font-size: var(--ifm-font-size-16);
56
transform: translateZ(0);
67
transition: top 100ms cubic-bezier(0.17, 0.67, 0.83, 0.67);

src/theme/hooks/usePrismTheme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import defaultTheme from 'prism-react-renderer/themes/palenight';
55

66
const usePrismTheme = () => {
77
const { siteConfig } = useDocusaurusContext();
8-
const prismTheme = siteConfig.themeConfig.prism.theme;
8+
const prismTheme = siteConfig.themeConfig.prism;
99
const lightModeTheme = prismTheme.theme || defaultTheme;
1010
const darkModeTheme = prismTheme.darkTheme || lightModeTheme;
1111
const themeType = useAgile(core.ui.THEME_TYPE);

0 commit comments

Comments
 (0)