Left align Profile > Password components
This commit is contained in:
Alexander Holliday
2025-01-03 12:44:12 -08:00
committed by GitHub

View File

@@ -126,8 +126,8 @@ const PasswordPanel = () => {
noValidate
spellCheck="false"
gap={theme.spacing(26)}
maxWidth={"80ch"}
marginInline={"auto"}
maxWidth={"80ch"} // Keep maxWidth
>
<TextInput
type="text"
@@ -166,7 +166,7 @@ const PasswordPanel = () => {
</Stack>
<Stack
direction="row"
alignItems={"center"}
alignItems={"flex-start"}
gap={SPACING_GAP}
flexWrap={"wrap"}
>
@@ -192,7 +192,7 @@ const PasswordPanel = () => {
</Stack>
<Stack
direction="row"
alignItems={"center"}
alignItems={"flex-start"}
gap={SPACING_GAP}
flexWrap={"wrap"}
>
@@ -255,4 +255,4 @@ PasswordPanel.propTypes = {
// No props are being passed to this component, hence no specific PropTypes are defined.
};
export default PasswordPanel;
export default PasswordPanel;