setup commit

This commit is contained in:
Elgius
2023-04-05 11:17:43 +05:00
parent d5a430a522
commit ecfe4ae4ab
8 changed files with 1292 additions and 96 deletions

3
myapp/src/app.css Normal file
View File

@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

View File

@ -0,0 +1,5 @@
<script>
import "../app.css";
</script>
<slot />

View File

@ -1,2 +1,10 @@
<h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>
<h1 class= 'text-3xl font-bold underline text-center'>
hello world
</h1>
<style lang='postcss'>
:global(html){
background-color: theme('colors.gray.100');
}
</style>