-
+
diff --git a/src/components/_shared/PageLayout.tsx b/src/components/_shared/PageLayout.tsx
index 1ae5d22c..d6f54bea 100644
--- a/src/components/_shared/PageLayout.tsx
+++ b/src/components/_shared/PageLayout.tsx
@@ -78,7 +78,7 @@ export const PageLayout = (props: PageLayoutProps) => {
})}
classList={{ 'main-content--no-padding': !isHeaderFixed }}
>
-
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'
})}
>
-
{props.title}
{props.children}{props.children}
+ {props.children}
+
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;
}
}