summaryrefslogtreecommitdiff
path: root/ui/routes/(app)/ch
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-11-02 22:01:03 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-11-02 22:02:06 -0400
commit25f1b55055ed62100597ee90787ae6a6ccd88a38 (patch)
tree58fbcc02e16438bbfbd8bb5ad125a6bcc00c8492 /ui/routes/(app)/ch
parent3010dd7000126654092d95c127ef7361c2a4e977 (diff)
Stop showing the text input area on the /me page
Diffstat (limited to 'ui/routes/(app)/ch')
-rw-r--r--ui/routes/(app)/ch/[channel]/+page.svelte13
1 files changed, 13 insertions, 0 deletions
diff --git a/ui/routes/(app)/ch/[channel]/+page.svelte b/ui/routes/(app)/ch/[channel]/+page.svelte
index 74ad28b..2c1b40a 100644
--- a/ui/routes/(app)/ch/[channel]/+page.svelte
+++ b/ui/routes/(app)/ch/[channel]/+page.svelte
@@ -1,6 +1,7 @@
<script>
import { page } from '$app/stores';
import ActiveChannel from '$lib/components/ActiveChannel.svelte';
+ import MessageInput from '$lib/components/MessageInput.svelte';
$: channel = $page?.params?.channel;
</script>
@@ -8,3 +9,15 @@
<div class="active-channel">
<ActiveChannel {channel} />
</div>
+<div class="create-message max-h-full">
+ <MessageInput {channel} />
+</div>
+
+<style>
+ .active-channel {
+ height: calc(
+ 100vh - var(--app-bar-height) - var(--interface-padding) - var(--input-row-height)
+ );
+ overflow: auto;
+ }
+</style>