From b4c6915021b8968c492493472c0432b1c83ed637 Mon Sep 17 00:00:00 2001 From: GauthierWebDev Date: Sat, 19 Apr 2025 20:03:16 +0200 Subject: [PATCH] style: Update class attributes in NavigationItem component --- app/partials/Navigation.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/partials/Navigation.tsx b/app/partials/Navigation.tsx index 96fd91e..026411e 100644 --- a/app/partials/Navigation.tsx +++ b/app/partials/Navigation.tsx @@ -34,20 +34,20 @@ function NavigationItem(props: NavigationItemProps) { onClick={() => setIsOpened((prev) => !prev)} type="button" aria-label={`${isOpened() ? "Masquer" : "Afficher"} les sous-sections de ${props.section.title}`} + class="contents cursor-pointer" > - {isOpened() ? "Masquer" : "Afficher"} - {isOpened() ? ( ) : ( )} + {isOpened() ? "Masquer" : "Afficher"} {props.section.title}