-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
2,571 additions
and
206 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
declare module "*.svg" { | ||
import React = require("react"); | ||
export const ReactComponent: React.FC<React.SVGProps<SVGSVGElement>>; | ||
const src: string; | ||
export default src; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
.header{ | ||
background-color: var(--primary-dark); | ||
border-bottom: 1px solid var(--borders-light-grey); | ||
color: var(--secondary-text-color); | ||
display: flex; | ||
overflow: hidden; | ||
width: 100%; | ||
padding: 8px 10px; | ||
filter: drop-shadow(black 0px 4px 8px); | ||
} | ||
|
||
.title { | ||
color: var(--primary-text-color); | ||
text-decoration: none; | ||
} | ||
|
||
.header-option { | ||
margin: 0px 10px; | ||
font-size: 16px; | ||
font-weight: 400; | ||
} | ||
|
||
.left { | ||
width: 50%; | ||
display: flex; | ||
flex: none; | ||
align-items: center; | ||
} | ||
|
||
.right { | ||
width: 50%; | ||
display: flex; | ||
flex: none; | ||
justify-content: flex-end; | ||
align-items: center; | ||
} | ||
|
||
.route-link { | ||
text-decoration: none; | ||
color: var(--secondary-text-color); | ||
} | ||
|
||
.route-link:hover, .route-link:focus { | ||
color: var(--white) | ||
} | ||
|
||
.upload-button { | ||
background-color: var(--primary-dark); | ||
color: var(--aqua); | ||
border: 1px solid var(--aqua); | ||
border-radius: 18px; | ||
height: 30px; | ||
width: 110px; | ||
} | ||
|
||
.upload-button:hover, .upload-button:focus { | ||
background-color: var(--aqua-secondary-hover); | ||
color: var(--aqua); | ||
} | ||
|
||
.upload-button-label { | ||
font-weight: 400; | ||
font-size: 14px; | ||
} |
Oops, something went wrong.