diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-11-11 22:57:35 -0500 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-11-11 22:57:35 -0500 |
| commit | a547bf3506b822d5ff4c1f1c6c4a15c63dd2d90e (patch) | |
| tree | fff7b3f78212cf819bd02394eb60d84f9efb136f /ui/routes/(app)/ch | |
| parent | f9e3b7211910338ec485170f4d18325398bc1d7a (diff) | |
Style sidebar and message input
Diffstat (limited to 'ui/routes/(app)/ch')
| -rw-r--r-- | ui/routes/(app)/ch/[channel]/+page.svelte | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ui/routes/(app)/ch/[channel]/+page.svelte b/ui/routes/(app)/ch/[channel]/+page.svelte index 0961665..6348e5c 100644 --- a/ui/routes/(app)/ch/[channel]/+page.svelte +++ b/ui/routes/(app)/ch/[channel]/+page.svelte @@ -22,4 +22,13 @@ ); overflow: auto; } + .create-message { + position: fixed; + bottom: 0.5rem; + width: calc(100% - var(--nav-width) - 2rem); + @media (width <= 640px) { + width: 100%; + left: 0; + } + } </style> |
