Skip to content

Instantly share code, notes, and snippets.

@JamDev0
Created October 25, 2023 16:58
Show Gist options
  • Select an option

  • Save JamDev0/1cb403773f002a0f1d497a6a9341fb8e to your computer and use it in GitHub Desktop.

Select an option

Save JamDev0/1cb403773f002a0f1d497a6a9341fb8e to your computer and use it in GitHub Desktop.
Globals.css example
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
.heading-1{
@apply font-inter font-semibold text-[2rem];
}
.heading-2{
@apply font-inter font-semibold text-[1.75rem];
}
.heading-3{
@apply font-inter font-semibold text-2xl;
}
.heading-4{
@apply font-inter font-semibold text-xl;
}
.heading-5{
@apply font-inter font-semibold text-base;
}
}
body {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment