refactor: base styling for a and icons

staging
Dinesh Salunke 2023-11-06 14:37:56 +05:30
parent c30e5568ba
commit 7e92214b03
1 changed files with 11 additions and 3 deletions

View File

@ -4,13 +4,21 @@
body { body {
@apply bg-white; @apply bg-white;
@apply text-gray-500; @apply text-gray-600;
@apply font-normal; @apply font-normal;
} }
a {
apply text-gray-600;
}
.icon-tabler { .icon-tabler {
stroke-width: 1px; stroke-width: 1px;
fill: none; fill: none;
@apply text-gray-700; @apply text-gray-500;
@apply stroke-gray-700; @apply stroke-gray-500;
}
a:hover .icon-tabler {
@apply stroke-blue-900;
} }