mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
fix(web): responsive account settings (#1545)
This commit is contained in:
parent
5945b51f36
commit
5bae500a86
1 changed files with 2 additions and 2 deletions
|
@ -74,7 +74,7 @@ function Credentials() {
|
||||||
description="The username and password can be changed either separately or simultaneously. Note that you will be logged out after changing credentials."
|
description="The username and password can be changed either separately or simultaneously. Note that you will be logged out after changing credentials."
|
||||||
noLeftPadding
|
noLeftPadding
|
||||||
>
|
>
|
||||||
<div className="px-2 pb-6 bg-white dark:bg-gray-800">
|
<div className="px-2 pb-0 sm:pb-6 bg-white dark:bg-gray-800">
|
||||||
<Formik
|
<Formik
|
||||||
initialValues={{
|
initialValues={{
|
||||||
username: username,
|
username: username,
|
||||||
|
@ -95,7 +95,7 @@ function Credentials() {
|
||||||
>
|
>
|
||||||
{({ values }) => (
|
{({ values }) => (
|
||||||
<Form>
|
<Form>
|
||||||
<div className="grid grid-cols-2 gap-x-10">
|
<div className="flex flex-col sm:grid sm:grid-cols-2 gap-x-10 pt-2">
|
||||||
<div className={separatorClass}>
|
<div className={separatorClass}>
|
||||||
<TextField name="username" label="Current Username" autoComplete="username" disabled />
|
<TextField name="username" label="Current Username" autoComplete="username" disabled />
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue