eexiv/src/app/globals.css

26 lines
367 B
CSS
Raw Normal View History

2024-02-09 19:00:26 -08:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-02-09 19:40:32 -08:00
@layer utilities {
.text-balance {
text-wrap: balance;
}
2024-02-09 19:00:26 -08:00
}
2024-02-09 19:40:32 -08:00
* {
box-sizing: border-box;
2024-02-09 19:00:26 -08:00
}
2024-02-09 23:44:00 -08:00
a {
color: #2563eb; /* Tailwind's blue-600 */
}
a:hover {
text-decoration: underline;
}
2024-02-10 22:54:11 -08:00
.button-default {
@apply bg-blue-600 text-slate-100 hover:bg-blue-400 font-semibold rounded py-2 px-4 my-2;
}