mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-11-11 14:06:47 +01:00
enhanced print view
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
import React from "react";
|
||||
|
||||
import { Link } from "gatsby";
|
||||
|
||||
import React from "react";
|
||||
import * as styles from "./Menu.module.scss";
|
||||
|
||||
type Props = {
|
||||
@@ -12,7 +10,7 @@ type Props = {
|
||||
};
|
||||
|
||||
const Menu: React.FC<Props> = ({ menu }: Props) => (
|
||||
<nav className={styles.menu}>
|
||||
<nav className={`${styles.menu} hideInPrintView`}>
|
||||
<ul className={styles.list}>
|
||||
{menu?.map((item) => (
|
||||
<li className={styles.item} key={item.path}>
|
||||
|
||||
Reference in New Issue
Block a user