Skip to content

Commit

Permalink
fix(atomic): icons in textarea search box are not centered (#3468)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexprudhomme authored Dec 8, 2023
1 parent ce4f5a3 commit bffe657
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const TextAreaClearButton: FunctionalComponent<Props> = ({
}) => (
<div
part="clear-button-wrapper"
class="py-2 flex items-start justify-center ml-2"
class="py-2 flex items-start justify-center items-center ml-2"
>
<Button
style="text-transparent"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const TextAreaSubmitButton: FunctionalComponent<Props> = ({
}) => (
<div
part="submit-button-wrapper"
class="py-2 flex items-start justify-center mr-2"
class="py-2 flex items-start justify-center items-center mr-2"
>
<Button
style="text-primary"
Expand Down

0 comments on commit bffe657

Please sign in to comment.