client: fix expiration input on small screens
This commit is contained in:
parent
88d14a40b1
commit
5da96a8f0a
1 changed files with 2 additions and 2 deletions
|
@ -178,7 +178,7 @@ const Post = () => {
|
||||||
id: generateUUID()
|
id: generateUUID()
|
||||||
}])
|
}])
|
||||||
}}
|
}}
|
||||||
style={{ flex: .5, lineHeight: '40px' }}
|
style={{ flex: .7, lineHeight: '40px' }}
|
||||||
type="default"
|
type="default"
|
||||||
>
|
>
|
||||||
Add a File
|
Add a File
|
||||||
|
@ -190,7 +190,7 @@ const Post = () => {
|
||||||
}}>
|
}}>
|
||||||
{<DatePicker
|
{<DatePicker
|
||||||
onChange={onChangeExpiration}
|
onChange={onChangeExpiration}
|
||||||
customInput={<Input label="Expires at" clearable width="300px" height="40px" />}
|
customInput={<Input label="Expires at" clearable height="40px" />}
|
||||||
placeholderText="Won't expire"
|
placeholderText="Won't expire"
|
||||||
selected={expiresAt}
|
selected={expiresAt}
|
||||||
showTimeInput={true}
|
showTimeInput={true}
|
||||||
|
|
Loading…
Reference in a new issue