Skip to content

Commit

Permalink
Merge pull request #6403 from hotosm/feature/6402-integrate-aws-logo
Browse files Browse the repository at this point in the history
Add `AWS Logo` to footer
  • Loading branch information
ramyaragupathy authored May 3, 2024
2 parents d1dcbaf + 0b56dd4 commit 038f744
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
12 changes: 12 additions & 0 deletions frontend/src/components/footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,18 @@ export function Footer() {
))}
</div>
</div>

{/* AWS logo */}
<div className="flex justify-end-ns">
<a href="https://aws.amazon.com/what-is-cloud-computing" target="_blank" rel="noreferrer">
<img
src="https://d0.awsstatic.com/logos/powered-by-aws-white.png"
alt="Powered by AWS Cloud Computing"
style={{ height: '3rem' }}
/>
</a>
</div>

<div className="flex justify-between flex-column flex-row-ns">
<div className="pt2 mb2 f6 w-50-l w-100">
<div className="pb3 lh-title mw6">
Expand Down
7 changes: 4 additions & 3 deletions frontend/src/components/footer/styles.scss
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
.footer-ctr-top {
padding-top: 3.43rem;
margin-bottom: 3rem;
margin-bottom: 2.5rem;
gap: 5rem;

@media screen and (max-width: 30em) {
gap: 2rem;
margin-bottom: 1rem;
}

p {
max-width: 600px
max-width: 600px;
}

a {
Expand All @@ -31,7 +32,7 @@
}

.socials {
gap: .75rem
gap: 0.75rem;
}

.react-tooltip#shareProjectTooltip {
Expand Down

0 comments on commit 038f744

Please sign in to comment.