Skip to content

Commit

Permalink
made sur that textarea's have resisability set
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Apr 7, 2024
1 parent 68418c7 commit 464b096
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webclient/components/AppSearchBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ watchEffect(() => {
maxlength="2048"
name="q"
type="text"
class="text-zinc-800 flex-grow bg-transparent px-3 py-2.5 font-semibold placeholder:text-zinc-800 focus-within:placeholder:text-zinc-500 placeholder:font-normal focus:outline-0"
class="text-zinc-800 flex-grow resize-none bg-transparent px-3 py-2.5 font-semibold placeholder:text-zinc-800 focus-within:placeholder:text-zinc-500 placeholder:font-normal focus:outline-0"
:placeholder="t('input.placeholder')"
:aria-label="t('input.aria-searchlabel')"
@focus="searchFocus"
Expand Down
2 changes: 1 addition & 1 deletion webclient/components/DetailsRoomOverviewSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const { list, containerProps, wrapperProps } = useVirtualList<ChildEntry>(filter
spellcheck="false"
maxlength="2048"
type="text"
class="focusable text-zinc-800 bg-zinc-200 w-full flex-grow rounded-sm py-2 ps-8 font-semibold placeholder:text-zinc-800 focus-within:placeholder:text-zinc-500 placeholder:font-normal"
class="focusable text-zinc-800 bg-zinc-200 w-full flex-grow resize-none rounded-sm py-2 ps-8 font-semibold placeholder:text-zinc-800 focus-within:placeholder:text-zinc-500 placeholder:font-normal"
:placeholder="t('search')"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion webclient/components/FeedbackModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const feedback = useFeedback();
<textarea
id="feedback-body"
v-model="feedback.data.body"
class="focusable bg-zinc-200 border-zinc-400 rounded border px-2 py-1"
class="focusable bg-zinc-200 border-zinc-400 resize-y rounded border px-2 py-1"
:placeholder="t('message')"
rows="6"
>
Expand Down

0 comments on commit 464b096

Please sign in to comment.