Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add AWS Logo to footer #6403

Merged
merged 1 commit into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading