You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to set up something like .red=.text-red-500 to that later we can change .text-red-500 only once. I plan to define .red, .blue, .voilet, .green for different purpose.
[abc]{.text-red-500} worked, but [abc]{.text-red-500} doesn't work.
how to embed a pdf to the lecture notes, where to place the pdf?
The text was updated successfully, but these errors were encountered:
How to set up something like .red=.text-red-500 to that later we can change .text-red-500 only once. I plan to define .red, .blue, .voilet, .green for different purpose.
[abc]{.text-red-500} worked, but [abc]{.text-red-500} doesn't work.
how to embed a pdf to the lecture notes, where to place the pdf?
In tailwind.css, add something like:
@layer utilities {
.red {
@apply text-red-500
}
}
Use **[abc]{.text-red-500}** instead
Create public/pdfs directory and maintain a well-structured hierarchy
The text was updated successfully, but these errors were encountered: