Skip to content

Commit

Permalink
Add logo on login page
Browse files Browse the repository at this point in the history
  • Loading branch information
german-zarate committed Oct 9, 2020
1 parent f2e735e commit abaf273
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions pages/login/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export default function LoginPage() {

return (
<div className={styles.container}>
<a className={styles.logo}>Shopping</a>
<div className={styles.content}>
<div className={styles.switchContainer}>
<button
Expand Down
13 changes: 11 additions & 2 deletions pages/login/login.module.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
@import url("https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@500&display=swap");

.container {
width: 100%;
height: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
padding-top: 100px;
flex-direction: column;
align-items: center;
padding-top: 30px;

.logo {
font-family: "Sansita Swashed", cursive;
font-size: 32px;
margin-bottom: 50px;
}

button {
cursor: pointer;
Expand Down

0 comments on commit abaf273

Please sign in to comment.