Browse Source

Compose changed to look nicer on mobile

master
silberengel 7 months ago
parent
commit
a856ad6bf7
  1. 8
      src/lib/components/ZettelEditor.svelte

8
src/lib/components/ZettelEditor.svelte

@ -201,9 +201,9 @@ Note content here...
</Button> </Button>
</div> </div>
<div class="flex space-x-4 {showPreview ? 'h-96' : ''}"> <div class="flex flex-col lg:flex-row lg:space-x-4 {showPreview ? 'lg:h-96' : ''}">
<!-- Editor Panel --> <!-- Editor Panel -->
<div class="{showPreview ? 'w-1/2' : 'w-full'} flex flex-col space-y-4"> <div class="{showPreview ? 'lg:w-1/2' : 'w-full'} flex flex-col space-y-4">
<div class="flex-1"> <div class="flex-1">
<Textarea <Textarea
bind:value={content} bind:value={content}
@ -218,8 +218,8 @@ Note content here...
<!-- Preview Panel --> <!-- Preview Panel -->
{#if showPreview && !hasPublicationHeader} {#if showPreview && !hasPublicationHeader}
<div class="w-1/2 border-l border-gray-200 dark:border-gray-700 pl-4"> <div class="lg:w-1/2 lg:border-l lg:border-gray-200 lg:dark:border-gray-700 lg:pl-4 mt-4 lg:mt-0">
<div class="sticky top-4"> <div class="lg:sticky lg:top-4">
<h3 <h3
class="text-lg font-semibold mb-4 text-gray-900 dark:text-gray-100" class="text-lg font-semibold mb-4 text-gray-900 dark:text-gray-100"
> >

Loading…
Cancel
Save