Skip to content
This repository has been archived by the owner on Dec 23, 2023. It is now read-only.

Commit

Permalink
Merge 'origin/feat/auth_views' (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
DiD3n committed Apr 13, 2022
2 parents ec4611c + 403f39b commit 88f1fb4
Show file tree
Hide file tree
Showing 50 changed files with 548 additions and 61 deletions.
13 changes: 13 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Expand Up @@ -86,6 +86,7 @@
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"axios": "^0.23.0",
"classnames": "^2.3.1",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.26.0",
"formik": "^2.2.9",
Expand Down
1 change: 1 addition & 0 deletions src/__mocks__/assets.js
@@ -0,0 +1 @@
export default "";
1 change: 1 addition & 0 deletions src/__mocks__/css.js
@@ -0,0 +1 @@
export default {};
Binary file added src/assets/images/GalaxyBg.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/vectors/back-arrow.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/assets/vectors/planet-blue-logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/assets/vectors/planet-blue.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/vectors/planet-where.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/assets/vectors/planet-yellow.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@@ -0,0 +1,8 @@
.container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-top: 48px;
min-width: 426px;
}
7 changes: 7 additions & 0 deletions src/components/AuthButtonsContainer/AuthButtonsContainer.tsx
@@ -0,0 +1,7 @@
import React from "react";

import styles from "./AuthButtonsContainer.module.css";

export const AuthButtonsContainer: React.FC = ({ children }) => <div className={styles.container}>{children}</div>;

export default AuthButtonsContainer;
11 changes: 11 additions & 0 deletions src/components/AuthContainer/AuthContainer.module.css
@@ -0,0 +1,11 @@
.container {
display: flex;
box-sizing: border-box;
background-color: #FFFFFF;
padding: 16px;
border-radius: 16px;
flex-direction: column;
align-items: center;
max-width: 512px;
width: 100%;
}

0 comments on commit 88f1fb4

Please sign in to comment.