forked from brooksbingham/theme-elegance
25 lines
319 B
CSS
25 lines
319 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
@apply bg-white;
|
|
@apply text-gray-600;
|
|
@apply font-normal;
|
|
}
|
|
|
|
a {
|
|
apply text-gray-600;
|
|
}
|
|
|
|
.icon-tabler {
|
|
stroke-width: 1px;
|
|
fill: none;
|
|
@apply text-gray-500;
|
|
@apply stroke-gray-500;
|
|
}
|
|
|
|
a:hover .icon-tabler {
|
|
@apply stroke-blue-900;
|
|
}
|