From 7e92214b03e9c0b445093a72af318e7fbfb1b3e2 Mon Sep 17 00:00:00 2001 From: Dinesh Salunke Date: Mon, 6 Nov 2023 14:37:56 +0530 Subject: [PATCH] refactor: base styling for a and icons --- _dev/elegance.css | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/_dev/elegance.css b/_dev/elegance.css index be5d721..d9bdcca 100644 --- a/_dev/elegance.css +++ b/_dev/elegance.css @@ -4,13 +4,21 @@ body { @apply bg-white; - @apply text-gray-500; + @apply text-gray-600; @apply font-normal; } +a { + apply text-gray-600; +} + .icon-tabler { stroke-width: 1px; fill: none; - @apply text-gray-700; - @apply stroke-gray-700; + @apply text-gray-500; + @apply stroke-gray-500; +} + +a:hover .icon-tabler { + @apply stroke-blue-900; }