Skip to content

Commit

Permalink
style: restyle some container widths
Browse files Browse the repository at this point in the history
  • Loading branch information
mh-zeynal authored and Adibov committed Nov 23, 2023
1 parent b553589 commit 6cae9d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ html {
padding-top: 120px;
overflow-y: auto;
overflow-x: hidden;
width: 100%;
}

.nav {
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Signup/Signup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const SignUpForm = ({onLoginClick}) => {
alignItems="center"
gap={2}
p={8}
style={{backgroundColor: 'var(--background-color)', borderRadius: 20, width: '50%'}}
style={{backgroundColor: 'var(--background-color)', borderRadius: 20, width: '250px'}}
>
<Typography variant="h2" fontSize={45} style={{textAlign: 'center'}}>
Sign Up
Expand Down Expand Up @@ -237,7 +237,7 @@ const LoginForm = ({onSignUpClick}) => {
alignItems="center"
gap={2}
p={8}
style={{backgroundColor: 'var(--background-color)', borderRadius: 20, width: '60%'}}
style={{backgroundColor: 'var(--background-color)', borderRadius: 20, width: '250px'}}
>
<Typography variant="h2" fontSize={45} style={{textAlign: 'center'}}>
Login
Expand Down
3 changes: 1 addition & 2 deletions src/pages/workshops/WorkshopsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ export default function WorkshopsPage() {
display: "grid",
gridTemplateColumns: gridTemplateColumnsValue,
justifyItems: "center",
width: "80vw",
gap: "30px",
gap: "15px",
}}>
{toastData && <Toast
open={openToast}
Expand Down

0 comments on commit 6cae9d3

Please sign in to comment.