Skip to content

Commit

Permalink
webapp: Fix uplaod image button layout
Browse files Browse the repository at this point in the history
  • Loading branch information
dev committed Nov 1, 2023
1 parent 5f6a36f commit 57c3f44
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions phoenix-webapp/src/components/page_editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,17 @@
</div>
</div>

<div class="flex mt-5 w-full">
<CfButton>
Upload image
</CfButton>
<HtmlEditor v-model="contentHtml" name="contentHtml" id="contentHtml"
placeholder="What are you thinking about today?"
/>
<div class="flex flex-col mt-5 w-full">
<div class="flex">
<CfButton>
Upload image
</CfButton>
</div>
<div class="flex mt-4">
<HtmlEditor v-model="contentHtml" name="contentHtml" id="contentHtml"
placeholder="What are you thinking about today?"
/>
</div>
</div>


Expand Down

0 comments on commit 57c3f44

Please sign in to comment.