diff --git a/src/components/Views/StaticPage.tsx b/src/components/Views/StaticPage.tsx index d6eebfb9..6138cd40 100644 --- a/src/components/Views/StaticPage.tsx +++ b/src/components/Views/StaticPage.tsx @@ -18,7 +18,7 @@ export const StaticPage = (props: Props) => {
(bodyEl = el)}>
-
+

{props.title}

{props.children}
diff --git a/src/components/_shared/PageLayout.tsx b/src/components/_shared/PageLayout.tsx index b27ae4d4..0edbb015 100644 --- a/src/components/_shared/PageLayout.tsx +++ b/src/components/_shared/PageLayout.tsx @@ -82,7 +82,7 @@ export const PageLayout = (props: PageLayoutProps) => { })} classList={{ 'main-content--no-padding': !isHeaderFixed }} > -
{props.children}
+ {props.children} diff --git a/src/components/_shared/TableOfContents/TableOfContents.tsx b/src/components/_shared/TableOfContents/TableOfContents.tsx index 2f27b935..4320c30c 100644 --- a/src/components/_shared/TableOfContents/TableOfContents.tsx +++ b/src/components/_shared/TableOfContents/TableOfContents.tsx @@ -85,7 +85,7 @@ export const TableOfContents = (props: Props) => { [styles.TableOfContentsFixedWrapperLefted]: props.variant === 'editor' })} > -
+
diff --git a/src/styles/app.scss b/src/styles/app.scss index b5d694b2..694c9be6 100644 --- a/src/styles/app.scss +++ b/src/styles/app.scss @@ -848,7 +848,7 @@ figure { .main-content { @include media-breakpoint-up(lg) { - // padding-top: 130px; + padding-top: 130px; } flex: 1 100%; @@ -1031,25 +1031,25 @@ details { Not supports in Firefox and IE */ /* total width */ - ::-webkit-scrollbar { + &::-webkit-scrollbar { background-color: #fff; width: 16px; } /* background of the scrollbar except button or resizer */ - ::-webkit-scrollbar-track { + &::-webkit-scrollbar-track { background-color: #fff; } /* scrollbar itself */ - ::-webkit-scrollbar-thumb { + &::-webkit-scrollbar-thumb { background-color: #babac0; border-radius: 16px; border: 4px solid #fff; } /* set button(top and bottom of the scrollbar) */ - ::-webkit-scrollbar-button { + &::-webkit-scrollbar-button { display: none; } }