From df9e8b1985a0f1c71c0657e72fad008bf437faba Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 20 Jan 2022 17:13:15 +0100 Subject: chore: add projects to main nav I redesign a little the main nav on small screens so it can takes two columns when the screen height is low. I change the 2xs breakpoint to 500px instead of 400px. --- src/components/Icons/Projects/Projects.tsx | 66 ++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/components/Icons/Projects/Projects.tsx (limited to 'src/components/Icons/Projects/Projects.tsx') diff --git a/src/components/Icons/Projects/Projects.tsx b/src/components/Icons/Projects/Projects.tsx new file mode 100644 index 0000000..76f35a6 --- /dev/null +++ b/src/components/Icons/Projects/Projects.tsx @@ -0,0 +1,66 @@ +import styles from './Projects.module.scss'; + +const ProjectsIcon = () => { + return ( + + + + + + + + + + + + + + + + ); +}; + +export default ProjectsIcon; -- cgit v1.2.3