Skip to content

Commit

Permalink
fix(landing): adjust feedback textarea max length
Browse files Browse the repository at this point in the history
  • Loading branch information
Satont committed Sep 5, 2023
1 parent 2deb339 commit 61d1ac1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions frontend/landing/src/components/index/Reviews.vue
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,12 @@ async function sendFeedBack() {
placeholder="Write your feedback"
rows="6"
class="p-2 rounded-md shadow-sm outline-none"
maxlength="170"
maxlength="200"
autocomplete="off"
/>
<span class="absolute px-2 py-1 text-xs text-white bg-[#5D58F5] rounded right-2 bottom-2">{{ reviewForm.message.length }}/200</span>
<span class="absolute px-2 py-1 text-xs text-white bg-[#5D58F5] rounded right-2 bottom-2">{{
reviewForm.message.length
}}/200</span>
</fieldset>
<div class="flex justify-end gap-2">
<button
Expand Down Expand Up @@ -275,7 +277,7 @@ async function sendFeedBack() {
.reviews-bg {
background: radial-gradient(ellipse at top, #270a3b, transparent),
radial-gradient(ellipse at bottom, #000, transparent);
radial-gradient(ellipse at bottom, #000, transparent);
}
#feedback-dialog::backdrop {
Expand Down

0 comments on commit 61d1ac1

Please sign in to comment.