19 lines
347 B
CSS
19 lines
347 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer components {
|
|
a[href][target="_blank"] {
|
|
@apply text-pink-500 hover:text-pink-700
|
|
}
|
|
code {
|
|
@apply bg-slate-200 border-slate-300 border rounded p-1 cursor-pointer
|
|
}
|
|
p {
|
|
@apply my-2
|
|
}
|
|
|
|
.list-decimal li {
|
|
@apply my-2
|
|
}
|
|
} |