Removed styling from /routes/chat/*.svelte

This commit is contained in:
John
2024-12-26 23:19:35 -05:00
parent f8f892bfe0
commit b8a285bbbc
2 changed files with 11 additions and 7 deletions

View File

@@ -1,14 +1,15 @@
<script>
import { initializeStores } from "@skeletonlabs/skeleton";
initializeStores();
//import { initializeStores } from "@skeletonlabs/skeleton";
//initializeStores();
</script>
<div class="chat-layout">
<!-- <div class=""> -->
<slot />
</div>
<!-- </div>
<style>
.chat-layout {
flex-direction: column;
}
/*.chat-layout {*/
/* flex-direction: column;*/
/*}*/
</style>
-->

View File

@@ -1,5 +1,8 @@
<script lang="ts">
import Chat from '$lib/components/chat/Chat.svelte';
import { initializeStores } from "@skeletonlabs/skeleton";
initializeStores();
</script>
<Chat />