Skip to content

Commit

Permalink
transactions: fix placeholder size in textinput (#3775)
Browse files Browse the repository at this point in the history
  • Loading branch information
herculesbrito authored and alexlyp committed Aug 1, 2022
1 parent 4aa952e commit 4a94cd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const subtitleMenu = ({
id="filterByAddrOrHashInput"
type="text"
placeholder={intl.formatMessage(messages.filterByAddrOrHashPlaceholder)}
size={intl.formatMessage(messages.filterByAddrOrHashPlaceholder).length}
value={searchText}
onChange={(e) => onChangeSearchText(e.target.value)}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

.historySearchTx {
display: inline-block;
width: 15rem;
min-width: 15rem;
}

.historyPageContent {
Expand Down

0 comments on commit 4a94cd6

Please sign in to comment.