Commit f007185b authored by Steven's avatar Steven

chore: tweak form styles

parent 142e97ab
This diff is collapsed.
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
"@mui/joy": "5.0.0-beta.48", "@mui/joy": "5.0.0-beta.48",
"@radix-ui/react-popover": "^1.1.2", "@radix-ui/react-popover": "^1.1.2",
"@reduxjs/toolkit": "^2.3.0", "@reduxjs/toolkit": "^2.3.0",
"@usememos/mui": "0.0.1-alpha.25", "@usememos/mui": "0.0.1-alpha.26",
"class-variance-authority": "^0.7.0", "class-variance-authority": "^0.7.0",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3", "copy-to-clipboard": "^3.3.3",
......
...@@ -39,8 +39,8 @@ importers: ...@@ -39,8 +39,8 @@ importers:
specifier: ^2.3.0 specifier: ^2.3.0
version: 2.3.0(react-redux@9.1.2(@types/react@18.3.12)(react@18.3.1)(redux@5.0.1))(react@18.3.1) version: 2.3.0(react-redux@9.1.2(@types/react@18.3.12)(react@18.3.1)(redux@5.0.1))(react@18.3.1)
'@usememos/mui': '@usememos/mui':
specifier: 0.0.1-alpha.25 specifier: 0.0.1-alpha.26
version: 0.0.1-alpha.25(lucide-react@0.453.0(react@18.3.1))(postcss@8.4.47)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwind-merge@2.5.4)(tailwindcss@3.4.14) version: 0.0.1-alpha.26(lucide-react@0.453.0(react@18.3.1))(postcss@8.4.47)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwind-merge@2.5.4)(tailwindcss@3.4.14)
class-variance-authority: class-variance-authority:
specifier: ^0.7.0 specifier: ^0.7.0
version: 0.7.0 version: 0.7.0
...@@ -1400,8 +1400,8 @@ packages: ...@@ -1400,8 +1400,8 @@ packages:
'@ungap/structured-clone@1.2.0': '@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
'@usememos/mui@0.0.1-alpha.25': '@usememos/mui@0.0.1-alpha.26':
resolution: {integrity: sha512-TjvhSgKRqXrDBPGJuojwjbBGLysiycvE+05UJlzmJ1OOQLO3UBYFc5F+iPHg5ok+7PEjWrt3tTubU76/kWsgBQ==} resolution: {integrity: sha512-6K5iYBddv6tcnXVq2qEi2mgW8QYo7x+b0V7fPtow5JUv7UcUykNEYvRhlQyLmAktnL9jiSkTOcR2kPeKzctNbw==}
peerDependencies: peerDependencies:
lucide-react: ^0.453.0 lucide-react: ^0.453.0
postcss: ^8.4.47 postcss: ^8.4.47
...@@ -4684,7 +4684,7 @@ snapshots: ...@@ -4684,7 +4684,7 @@ snapshots:
'@ungap/structured-clone@1.2.0': {} '@ungap/structured-clone@1.2.0': {}
'@usememos/mui@0.0.1-alpha.25(lucide-react@0.453.0(react@18.3.1))(postcss@8.4.47)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwind-merge@2.5.4)(tailwindcss@3.4.14)': '@usememos/mui@0.0.1-alpha.26(lucide-react@0.453.0(react@18.3.1))(postcss@8.4.47)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwind-merge@2.5.4)(tailwindcss@3.4.14)':
dependencies: dependencies:
lucide-react: 0.453.0(react@18.3.1) lucide-react: 0.453.0(react@18.3.1)
postcss: 8.4.47 postcss: 8.4.47
......
...@@ -69,7 +69,7 @@ const PasswordSignInForm = () => { ...@@ -69,7 +69,7 @@ const PasswordSignInForm = () => {
<div className="w-full flex flex-col justify-start items-start"> <div className="w-full flex flex-col justify-start items-start">
<span className="leading-8 text-gray-600">{t("common.username")}</span> <span className="leading-8 text-gray-600">{t("common.username")}</span>
<Input <Input
className="w-full" className="w-full bg-white dark:bg-black"
size="lg" size="lg"
type="text" type="text"
readOnly={actionBtnLoadingState.isLoading} readOnly={actionBtnLoadingState.isLoading}
...@@ -85,7 +85,7 @@ const PasswordSignInForm = () => { ...@@ -85,7 +85,7 @@ const PasswordSignInForm = () => {
<div className="w-full flex flex-col justify-start items-start"> <div className="w-full flex flex-col justify-start items-start">
<span className="leading-8 text-gray-600">{t("common.password")}</span> <span className="leading-8 text-gray-600">{t("common.password")}</span>
<Input <Input
className="w-full" className="w-full bg-white dark:bg-black"
size="lg" size="lg"
type="password" type="password"
readOnly={actionBtnLoadingState.isLoading} readOnly={actionBtnLoadingState.isLoading}
......
...@@ -96,6 +96,7 @@ const SignIn = () => { ...@@ -96,6 +96,7 @@ const SignIn = () => {
<div className="w-full flex flex-col space-y-2"> <div className="w-full flex flex-col space-y-2">
{identityProviderList.map((identityProvider) => ( {identityProviderList.map((identityProvider) => (
<Button <Button
className="bg-white dark:bg-black"
key={identityProvider.name} key={identityProvider.name}
variant="outlined" variant="outlined"
fullWidth fullWidth
......
...@@ -88,7 +88,7 @@ const SignUp = () => { ...@@ -88,7 +88,7 @@ const SignUp = () => {
<div className="w-full flex flex-col justify-start items-start"> <div className="w-full flex flex-col justify-start items-start">
<span className="leading-8 text-gray-600">{t("common.username")}</span> <span className="leading-8 text-gray-600">{t("common.username")}</span>
<Input <Input
className="w-full" className="w-full bg-white dark:bg-black"
size="lg" size="lg"
type="text" type="text"
readOnly={actionBtnLoadingState.isLoading} readOnly={actionBtnLoadingState.isLoading}
...@@ -104,7 +104,7 @@ const SignUp = () => { ...@@ -104,7 +104,7 @@ const SignUp = () => {
<div className="w-full flex flex-col justify-start items-start"> <div className="w-full flex flex-col justify-start items-start">
<span className="leading-8 text-gray-600">{t("common.password")}</span> <span className="leading-8 text-gray-600">{t("common.password")}</span>
<Input <Input
className="w-full" className="w-full bg-white dark:bg-black"
size="lg" size="lg"
type="password" type="password"
readOnly={actionBtnLoadingState.isLoading} readOnly={actionBtnLoadingState.isLoading}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment