12 lines
148 B
CSS
12 lines
148 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer components {
|
|
|
|
.link {
|
|
@apply hover:underline text-blue-500;
|
|
}
|
|
|
|
}
|