From 35d486a62ad14734ed84a1d4869756d44ac8435b Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 2 Jul 2024 17:50:34 -0400 Subject: [PATCH] changed beginning width setup --- src/components/PasswordField/PasswordField.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/PasswordField/PasswordField.tsx b/src/components/PasswordField/PasswordField.tsx index 17bf973..03cd33d 100644 --- a/src/components/PasswordField/PasswordField.tsx +++ b/src/components/PasswordField/PasswordField.tsx @@ -2,8 +2,7 @@ import { InputAdornment, TextField, TextFieldProps, styled } from "@mui/material import { useState } from 'react' export const CustomInput = styled(TextField)({ - width: "100%", // Adjust the width as needed - maxWidth: "183px", + width: "183px", // Adjust the width as needed borderRadius: "5px", // backgroundColor: "rgba(30, 30, 32, 1)", outline: "none",