Skip to content

Commit

Permalink
Update logo
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinhenderson committed Jun 25, 2024
1 parent 27b2a5b commit 52f3f6e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
13 changes: 11 additions & 2 deletions components/language-library-credits/language-library-credits.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,17 @@ export const LanguageLibraryCredits = () => {
return (
<div className={styles.outerContainer}>
<div className={styles.container}>
<h2>Built and managed by Ace Centre</h2>
<p>In collaboration with:</p>
<div>
<h2>Built and managed by</h2>
<div className={styles.logoImageContainer}>
<Image
layout="fill"
objectFit="contain"
src={"/nav-logo.png"}
alt="The Ace Centre logo"
></Image>
</div>
</div>

<div className={styles.logoContainer}>
<div className={styles.imageContainer}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@
width: 240px;
}

.logoImageContainer {
position: relative;
width: 100%;
max-width: 300px;
min-height: 150px;
margin: 0 auto;
}

/** Mobile CSS */
@media (max-width: 760px) {
.container {
Expand Down

0 comments on commit 52f3f6e

Please sign in to comment.