Skip to content

Commit

Permalink
Merge pull request #1514 from rafeyrana/issue#1508
Browse files Browse the repository at this point in the history
Left align Profile > Password components
  • Loading branch information
ajhollid authored Jan 3, 2025
2 parents 6774958 + 2c21a44 commit 118796c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Client/src/Components/TabPanels/Account/PasswordPanel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ const PasswordPanel = () => {
noValidate
spellCheck="false"
gap={theme.spacing(26)}
maxWidth={"80ch"}
marginInline={"auto"}
maxWidth={"80ch"} // Keep maxWidth

>
<TextInput
type="text"
Expand Down Expand Up @@ -166,7 +166,7 @@ const PasswordPanel = () => {
</Stack>
<Stack
direction="row"
alignItems={"center"}
alignItems={"flex-start"}
gap={SPACING_GAP}
flexWrap={"wrap"}
>
Expand All @@ -192,7 +192,7 @@ const PasswordPanel = () => {
</Stack>
<Stack
direction="row"
alignItems={"center"}
alignItems={"flex-start"}
gap={SPACING_GAP}
flexWrap={"wrap"}
>
Expand Down Expand Up @@ -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;

0 comments on commit 118796c

Please sign in to comment.