From 1f41afe1519285556d0fc1370b52da5656468e04 Mon Sep 17 00:00:00 2001 From: Inhji Date: Thu, 20 Jul 2023 07:20:49 +0200 Subject: [PATCH] consolidate underline-link, fix image border radius --- assets/css/app.css | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/assets/css/app.css b/assets/css/app.css index 1452da6..4d06503 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -79,8 +79,8 @@ @apply prose-invert; } - .prose a { - @apply underline decoration-2 decoration-theme-primary hover:bg-theme-primary hover:text-theme-background transition; + .prose a, a.underline-link { + @apply underline decoration-1 decoration-theme-primary hover:decoration-theme-base transition; } .prose a[href^="http://"], .prose a[href^="https://"] { @@ -116,7 +116,7 @@ } .prose img { - @apply rounded; + @apply rounded-lg; } } @@ -143,10 +143,4 @@ body > header nav a { @apply inline-block text-theme-base px-3 py-2.5 border border-theme-background1 hover:bg-theme-background1 rounded transition font-semibold; } -} - -@layer utilities { - a.underline-link { - @apply underline decoration-2 decoration-theme-primary hover:decoration-theme-secondary transition; - } } \ No newline at end of file