|
|
@@ -9,6 +9,9 @@ import type { PageNode } from '../../interfaces/page-node';
|
|
|
import { LsxContext } from '../lsx-context';
|
|
|
|
|
|
|
|
|
+import styles from './LsxPage.module.scss';
|
|
|
+
|
|
|
+
|
|
|
type Props = {
|
|
|
pageNode: PageNode,
|
|
|
lsxContext: LsxContext,
|
|
|
@@ -99,7 +102,7 @@ export const LsxPage = React.memo((props: Props): JSX.Element => {
|
|
|
}, [basisViewersCount, pageNode.page]);
|
|
|
|
|
|
return (
|
|
|
- <li className="page-list-li">
|
|
|
+ <li className={`page-list-li ${styles['page-list-li']}`}>
|
|
|
<small>{iconElement}</small> {pagePathElement}
|
|
|
<span className="ml-2">{pageListMetaElement}</span>
|
|
|
{childrenElements}
|