From 7cf586603a99bcc95a37661f87ae015c855e1a01 Mon Sep 17 00:00:00 2001 From: bruno Date: Wed, 17 Jan 2024 10:47:44 +0100 Subject: [PATCH] test --- assets/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/style.css b/assets/style.css index fe81dc3..079ec5b 100644 --- a/assets/style.css +++ b/assets/style.css @@ -154,7 +154,7 @@ header hr { flex-direction: column; overflow: hidden; /* Hide the content initially */ max-height: 0; /* Set the initial height to 0 */ - border: 0px solid transparent; /* Set initial border */ + border: 0 solid transparent; /* Set initial border */ transition: max-height 0.1s ease, border 0.1s ease; /* Add transition for smooth height and border animation */ } @@ -167,7 +167,7 @@ header hr { /* Add this style for the transition when not hovering */ .navsite_item:not(:hover) .navpage_list { max-height: 0; /* Set height to 0 when not hovering */ - border: 0px solid transparent; /* Maintain border for the delay */ + border: 0 solid transparent; /* Maintain border for the delay */ transition-delay: 0.1s; /* Delay the border fade-out transition */ }