Skip to content

Commit

Permalink
feat: added login to portal
Browse files Browse the repository at this point in the history
  • Loading branch information
james-hinton committed Nov 22, 2023
1 parent 19f2974 commit 7dce90c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/Header/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ const Header = () => {
<a href="https://spatialdays.com/" target="_blank" className="header__link">
Who We Are
</a>

{/* Button for login */}
<a href="https://portal.staging.stac.spatialdays.com/explorer" className="header__link header__link--btn" target="_blank">
Login
</a>
</div>
</div>
</div>
Expand Down
14 changes: 14 additions & 0 deletions src/components/Header/Header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,20 @@
&:hover {
color: var(--color-link-hover-light);
}

&--btn {
background-color: rgb(41,80,212);
color: white;
padding: 0.5rem 1rem;
border-radius: 5px;
font-weight: 500;
transition: all 0.3s ease-in-out;
&:hover {
background-color: rgb(41,80,212, 0.8);
transform: scale(1.05);
color: white;
}
}
}

@media (max-width: 768px) {
Expand Down

0 comments on commit 7dce90c

Please sign in to comment.