From 6315efacd6212a347877102a68f430fffa4ca4ac Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 10 Jan 2022 18:17:40 +0100 Subject: refactor(sidebar): use a component to avoid styles repetition I also fix some overflow/sticky issues. I have to set overflow auto only when there is no button-like links otherwise, with translate, the button is cropped on hover. --- src/pages/contact.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/pages/contact.tsx') diff --git a/src/pages/contact.tsx b/src/pages/contact.tsx index d9c4e4f..5e6d138 100644 --- a/src/pages/contact.tsx +++ b/src/pages/contact.tsx @@ -12,6 +12,7 @@ import { FormEvent, useState } from 'react'; import PostHeader from '@components/PostHeader/PostHeader'; import styles from '@styles/pages/Page.module.scss'; import { SocialMedia } from '@components/Widget'; +import Sidebar from '@components/Sidebar/Sidebar'; const ContactPage: NextPageWithLayout = () => { const [name, setName] = useState(''); @@ -112,14 +113,14 @@ const ContactPage: NextPageWithLayout = () => { - + ); -- cgit v1.2.3