15 lines
No EOL
216 B
Svelte
15 lines
No EOL
216 B
Svelte
<script>
|
|
// Simple layout for test pages
|
|
</script>
|
|
|
|
<div class="test-layout">
|
|
<slot />
|
|
</div>
|
|
|
|
<style>
|
|
.test-layout {
|
|
min-height: 100vh;
|
|
background: var(--background);
|
|
color: var(--text-primary);
|
|
}
|
|
</style> |