fix(frontend): adjust padding of search box so placeholder text fits on mobile

this only fixes English. Other languages placeholders may or may not fit into the space

fixes #393
This commit is contained in:
sct
2020-12-19 12:57:17 +09:00
parent 53bede692d
commit 3601d442db
3 changed files with 3 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ const Layout: React.FC = ({ children }) => {
</button>
<div className="flex-1 px-4 flex justify-between">
<SearchInput />
<div className="ml-4 flex items-center md:ml-6">
<div className="flex items-center md:ml-6">
<LanguagePicker />
<UserDropdown />
</div>