1
1
Fork 0
portfolio/styles.css
2024-03-23 23:11:02 -05:00

20 lines
357 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.link {
@apply text-blue underline;
}
.link:visited {
@apply text-lavender;
}
.link:hover,
.link:active,
.link:focus {
@apply no-underline text-sky outline-2 outline-sky;
}
.outline-link {
@apply outline-offset-4 outline-2 outline-sky;
}
}