16 lines
257 B
CSS
16 lines
257 B
CSS
|
@tailwind base;
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|
||
|
|
||
|
@layer base {
|
||
|
a {
|
||
|
@apply text-blue-600 hover:text-blue-800 visited:text-purple-600;
|
||
|
}
|
||
|
|
||
|
.dark {
|
||
|
a {
|
||
|
@apply text-blue-300 hover:text-blue-500 visited:text-purple-300;
|
||
|
}
|
||
|
}
|
||
|
}
|