From 15a56b17544108ea6b7222cae4953105685edd4b Mon Sep 17 00:00:00 2001 From: Antoine M Date: Wed, 26 Nov 2025 09:25:51 +0100 Subject: [PATCH] STYLE modify article card CSS to adjust SVG overflow visibility and refine stroke width on hover for improved visual consistency --- resources/css/components/article-card.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/css/components/article-card.css b/resources/css/components/article-card.css index b4b3c56..304ec7c 100644 --- a/resources/css/components/article-card.css +++ b/resources/css/components/article-card.css @@ -2,18 +2,18 @@ @apply p-6 relative !flex flex-col pt-16; svg { - @apply absolute top-0 left-0 w-full h-full; + @apply absolute top-0 left-0 w-full h-full overflow-visible; z-index: -1; path { stroke-width: 0; - vector-effect: non-scaling-stroke; + /* vector-effect: non-scaling-stroke; */ } } &:hover { svg { path { - stroke-width: 8px; + stroke-width: 6px; } } &:after {