diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-12-30 15:42:37 -0500 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-12-30 15:42:37 -0500 |
| commit | 1859be064a5f3ea7e6e0188526b1b125dc1c77a7 (patch) | |
| tree | 857c1b2a9c24c3cbf48429d0b1a754f7a0fdaf6f /ui/lib/components/CreateChannelForm.svelte | |
| parent | c6fbd21c27277dd76c4dbabf5f1bf24f58142a1a (diff) | |
Strip out Tailwind etc
Diffstat (limited to 'ui/lib/components/CreateChannelForm.svelte')
| -rw-r--r-- | ui/lib/components/CreateChannelForm.svelte | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ui/lib/components/CreateChannelForm.svelte b/ui/lib/components/CreateChannelForm.svelte index d50e60d..8fab4c4 100644 --- a/ui/lib/components/CreateChannelForm.svelte +++ b/ui/lib/components/CreateChannelForm.svelte @@ -15,16 +15,12 @@ } </script> -<form onsubmit={handleSubmit} class="form form-row flex-nowrap"> +<form onsubmit={handleSubmit}> <input type="text" placeholder="create channel" bind:value={name} {disabled} - class="input flex-auto h-6 w-9/12" /> - <button type="submit" class="flex-none w-6 h-6">➕</button> + <button type="submit">➕</button> </form> - -<style> -</style> |
