my_gradio / js /app /src /routes /+layout.svelte
xray918's picture
Upload folder using huggingface_hub
0ad74ed verified
raw
history blame contribute delete
320 Bytes
<script>
import "@gradio/theme/reset.css";
import "@gradio/theme/global.css";
import "@gradio/theme/pollen.css";
import "@gradio/theme/typography.css";
import "./svelte_init";
</script>
<slot></slot>
<style>
:global(body) {
background: var(--body-background-fill);
color: var(--body-text-color);
}
</style>