|
|
@@ -32,6 +32,11 @@ import {
|
|
|
getServerSideCommonProps, generateCustomTitleForPage, getNextI18NextConfig, skipSSR, addActivity,
|
|
|
} from '../utils/commons';
|
|
|
|
|
|
+import styles from './[[...path]].module.scss';
|
|
|
+
|
|
|
+const subnavigationTopBlockClass = styles['subnavigation-top-block'];
|
|
|
+
|
|
|
+
|
|
|
const logger = loggerFactory('growi:next-page:share');
|
|
|
|
|
|
type Props = CommonProps & {
|
|
|
@@ -120,6 +125,8 @@ const SharedPage: NextPageWithLayout<Props> = (props: Props) => {
|
|
|
</Head>
|
|
|
|
|
|
<div className="dynamic-layout-root justify-content-between">
|
|
|
+
|
|
|
+ <div className={`${subnavigationTopBlockClass} d-block d-md-none border-bottom`}></div>
|
|
|
<nav className="sticky-top">
|
|
|
<GrowiContextualSubNavigationForSharedPage page={currentPage ?? props.shareLinkRelatedPage} isLinkSharingDisabled={props.disableLinkSharing} />
|
|
|
</nav>
|