Using Tailwind
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script lang="ts"> | |
import Tailwind from "./Tailwind.svelte"; | |
export let name: string; | |
</script> | |
<Tailwind /> | |
<style lang="postcss"> | |
:global { | |
body { | |
@apply h-full min-h-full bg-gray-800; | |
} | |
h1 { | |
@apply bg-pink-500 text-gray-100 font-bold text-xl rounded-lg px-5; | |
} | |
} | |
.example { | |
@apply mt-4 text-red-500 text-5xl font-bold; | |
} | |
</style> | |
<main> | |
<h1>Hello {name} from the <span class="text-7xl">Svelte</span> Tailwind Nx template!</h1> | |
<div> | |
<span class="example">Example goes here</span> | |
</div> | |
</main> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment