Skip to content

Commit

Permalink
docs: fix height of search-box on firefox browser (#745)
Browse files Browse the repository at this point in the history
  • Loading branch information
unix authored Feb 16, 2022
1 parent 57ef41f commit e7be5d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/search/search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ const Search: React.FC<unknown> = () => {
<Input
ref={ref}
w="100%"
h="unset"
font="1.125rem"
py={0.75}
placeholder="Search a component"
Expand Down Expand Up @@ -163,6 +162,7 @@ const Search: React.FC<unknown> = () => {
transform: translateX(-50%);
transition: all 500ms ease;
width: 500px;
height: auto;
}
:global(.search-menu.wrapper) {
box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15), 0 -5px 20px 0 rgba(0, 0, 0, 0.15) !important;
Expand Down

0 comments on commit e7be5d9

Please sign in to comment.