From a7a07aa660381f4f50b7571d187cbdde982e0e54 Mon Sep 17 00:00:00 2001 From: Phuoc Nguyen Date: Fri, 2 Apr 2021 22:12:00 +0700 Subject: [PATCH] Fix incorrect comments --- client/patterns/dropdown/Details.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/patterns/dropdown/Details.tsx b/client/patterns/dropdown/Details.tsx index 00f379a..3f0d9cd 100644 --- a/client/patterns/dropdown/Details.tsx +++ b/client/patterns/dropdown/Details.tsx @@ -44,7 +44,7 @@ css={` position: relative; } -/* Hide the dropdown's content by default --> +/* Hide the dropdown's content by default */ .dropdown__content { display: none; @@ -63,7 +63,7 @@ css={` width: 200px; } -/* Show the content when hover on the container --> +/* Show the content when hover on the container */ .dropdown:hover .dropdown__content { display: block; }