35 lines
473 B
CSS
35 lines
473 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
p {
|
|
@apply mb-3;
|
|
}
|
|
|
|
ul {
|
|
@apply list-disc;
|
|
}
|
|
|
|
ol {
|
|
@apply list-decimal;
|
|
}
|
|
|
|
ul, ol {
|
|
@apply my-3 pl-10;
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
.btn {
|
|
@apply bg-blue-500 hover:bg-blue-700 text-center py-2 px-4 rounded disabled:opacity-50 text-white;
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
.link {
|
|
@apply text-blue-600 hover:underline;
|
|
}
|
|
}
|
|
|
|
.grecaptcha-badge { visibility: hidden; }
|