From 6b82d36f963199f4166e9da1d0e5d8dc29f399fe Mon Sep 17 00:00:00 2001 From: kvakazyambra Date: Tue, 25 Oct 2022 22:43:24 +0300 Subject: [PATCH] Fixed header controls --- src/components/Author/Userpic.tsx | 4 +++- src/components/Nav/Private.module.scss | 17 ++++++++++++++++- src/components/Nav/Private.tsx | 4 ++-- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/src/components/Author/Userpic.tsx b/src/components/Author/Userpic.tsx index 0a075738..b89a1a0a 100644 --- a/src/components/Author/Userpic.tsx +++ b/src/components/Author/Userpic.tsx @@ -1,11 +1,13 @@ import { Show } from 'solid-js/web' import type { Author } from '../../graphql/types.gen' import style from './Userpic.module.scss' +import { clsx } from 'clsx' interface UserpicProps { user: Author hasLink?: boolean isBig?: boolean + class?: string } export default (props: UserpicProps) => { @@ -16,7 +18,7 @@ export default (props: UserpicProps) => { } return ( -
+