Skip to content

Commit

Permalink
fix(tailwind-components): set string input height according to spec (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
connoratrug authored Jan 20, 2025
1 parent 7659fa8 commit 92dea40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/tailwind-components/components/input/String.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function onInput(event: Event) {
:required="required"
:placeholder="placeholder"
:disabled="disabled"
class="w-full pr-4 font-sans text-black text-gray-300 outline-none h-10 ring-red-500 pl-3 shadow-search-input focus:shadow-search-input hover:shadow-search-input search-input-mobile border border-solid rounded-input"
class="w-full h-[56px] pr-4 font-sans text-black text-gray-300 outline-none ring-red-500 pl-3 shadow-search-input focus:shadow-search-input hover:shadow-search-input search-input-mobile border border-solid rounded-input"
:class="{
'border-invalid text-invalid': hasError,
'border-valid text-valid': valid,
Expand Down

0 comments on commit 92dea40

Please sign in to comment.