Skip to content

Commit

Permalink
Changed login page to have the same theme as the gallery
Browse files Browse the repository at this point in the history
  • Loading branch information
EerierGosling committed Jul 18, 2024
1 parent 9840f6d commit 92d9ee3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
10 changes: 2 additions & 8 deletions src/components/big-interactive-pages/login.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,15 @@
display: flex;
flex-direction: column;
height: 100%;
background-image:
linear-gradient(to right, #000000 60%, #00000000 80%),
url('/background-new.png');
background-repeat: no-repeat;
background-size: cover;
background-position: 100% 80%;
}

.pageMain {
flex: 1;
width: 60%;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
padding-top: 20vh;
padding: 20vh 20px;
}

form {
Expand Down
2 changes: 1 addition & 1 deletion src/components/big-interactive-pages/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function Login({ session, email, to }: LoginProps) {

return (
<div class={styles.page}>
<MainNavbar transparent session={session} />
<MainNavbar session={session} />

<div class={styles.pageMain}>
<form onSubmit={(event) => {
Expand Down

0 comments on commit 92d9ee3

Please sign in to comment.