Skip to content

Commit

Permalink
refactor(ubilabs-logo): change size and color (#655)
Browse files Browse the repository at this point in the history
* refactor(ubilabs-logo): change size and color

* refactor(ubilabs-logo): add link and translations, remove font size
  • Loading branch information
KatvonRivia committed Sep 24, 2020
1 parent f94e133 commit 152009e
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 7 deletions.
1 change: 1 addition & 0 deletions i18n/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"EsaWebsite": "ESA Website",
"CCIWebsite": "CCI Website",
"github": "Github",
"madeby": "made by",
"closeStory": "Geschichte schließen",
"removeCompare": "Vergleich entfernen",
"dataInfo": "Dateninformation",
Expand Down
1 change: 1 addition & 0 deletions i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"EsaWebsite": "ESA Website",
"CCIWebsite": "CCI Website",
"github": "Github",
"madeby": "made by",
"closeStory": "Close story",
"removeCompare": "Remove Compare",
"dataInfo": "Data Information",
Expand Down
1 change: 1 addition & 0 deletions i18n/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"EsaWebsite": "El sitio web de ESA",
"CCIWebsite": "El sitio web de CCI",
"github": "Github",
"madeby": "made by",
"closeStory": "Cerrar la historia",
"removeCompare": "Eliminar comparar",
"dataInfo": "Información de datos",
Expand Down
1 change: 1 addition & 0 deletions i18n/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"EsaWebsite": "Site de l'ESA",
"CCIWebsite": "Site de l'ICC",
"github": "Github",
"madeby": "made by",
"closeStory": "Fermer l'article",
"removeCompare": "Retirer Comparez",
"dataInfo": "Information sur les données",
Expand Down
1 change: 1 addition & 0 deletions i18n/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"EsaWebsite": "ESA website",
"CCIWebsite": "CCI website",
"github": "Github",
"madeby": "made by",
"closeStory": "Verhaal sluiten",
"removeCompare": "Vergelijking verwijderen",
"dataInfo": "Data informatie",
Expand Down
9 changes: 4 additions & 5 deletions src/scripts/components/main/menu/menu.styl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
display: flex
flex-direction: row
justify-content: center
width: 100%

svg
fill: $main
Expand All @@ -77,18 +76,18 @@
bottom: emCalc(20px)
left: emCalc(32px)
color: $textDefault
font-size: 10px

svg
height: emCalc(30px)
fill: $textDefault
height: emCalc(25px)
fill: $textWhite

&:hover
fill: $textColor

.creditsText
margin: emCalc(5px)
font-size: 10px
margin-left: 0
font-size: 13px

@media screen and (max-width: 480px)
.menuContainer
Expand Down
11 changes: 9 additions & 2 deletions src/scripts/components/main/menu/menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,15 @@ const Menu: FunctionComponent = () => {
)}
</nav>
<div className={styles.credits}>
<p className={styles.creditsText}>Made by</p>
<Ubilabslogo />
<a
href={'https://ubilabs.net'}
target={'_blank'}
rel="noopener noreferrer">
<p className={styles.creditsText}>
<FormattedMessage id={'madeby'} />
</p>
<Ubilabslogo />
</a>
</div>
<div className={styles.logo}>
<CCILogo />
Expand Down

0 comments on commit 152009e

Please sign in to comment.