mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Test some smaller sizes for mobile screens
This commit is contained in:
parent
eeea5b7c28
commit
1427ffc783
1 changed files with 6 additions and 1 deletions
|
|
@ -97,6 +97,7 @@ function Header(props: HeaderProps): JSX.Element {
|
|||
<FormInput
|
||||
ref={inputRef}
|
||||
type="text"
|
||||
tabIndex={0}
|
||||
autoFocus={!isTouchScreenDevice()}
|
||||
value={props.filterText}
|
||||
placeholder="Filter for label"
|
||||
|
|
@ -242,7 +243,11 @@ export function EditLabelsModal(props: EditLabelsModalProps): JSX.Element {
|
|||
// >
|
||||
<VStack distribution="start" css={{
|
||||
p: '0', maxHeight: '400px',
|
||||
width: '265px',
|
||||
maxWidth: '265px',
|
||||
'@mdDown': {
|
||||
maxWidth: '100%',
|
||||
maxHeight: '280px',
|
||||
},
|
||||
}}>
|
||||
<Header setFilterText={setFilterText} filterText={filterText} />
|
||||
<LabelsList
|
||||
|
|
|
|||
Loading…
Reference in a new issue