Skip to content

Commit

Permalink
v1.3-beta: minor adjustments to search box
Browse files Browse the repository at this point in the history
  • Loading branch information
sshmatrix committed Jan 3, 2024
1 parent 6b74755 commit c85a50a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions components/BigSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const BigSearch: React.FC<SearchBoxProps> = ({ onSearch }) => {
<input
className="input-main"
type="text"
placeholder={ isMobile ? "search .eth" : "search for a .eth domain" }
placeholder={ isMobile ? "search" : "search domain" }
value={query.toLowerCase()}
name=".eth search"
id="eth-search"
Expand All @@ -57,8 +57,8 @@ const BigSearch: React.FC<SearchBoxProps> = ({ onSearch }) => {
style={{
fontFamily: query ? 'SF Mono' : 'Spotnik',
fontWeight: '600',
fontSize: query ? '22px' : '19px',
paddingTop: query ? '8px' : '15px',
fontSize: query ? '22px' : '17px',
paddingTop: query ? '8px' : '17px',
paddingBottom: query ? '8px' : '15px',
}}
/>
Expand Down
2 changes: 1 addition & 1 deletion components/SearchBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const SearchBox: React.FC<SearchBoxProps> = ({ onSearch }) => {
>
<input
type="text"
placeholder={"search .eth name".toLowerCase()}
placeholder={"search".toLowerCase()}
value={query.toLowerCase()}
name=".eth search"
id="eth-search"
Expand Down
Loading

0 comments on commit c85a50a

Please sign in to comment.