Skip to content

Commit

Permalink
issue #579: Fix the display of the bluesky icon
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic-reis committed Oct 31, 2024
1 parent e5e0a1b commit 60d3804
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ REACT_APP_TAG_EDITORIAL=editorial
REACT_APP_ENABLE_AUTH_0=false
REACT_APP_TWITTER=Journal_DigHist
REACT_APP_FACEBOOK=journalofdigitalhistory
REACT_APP_BLUESKY=jdighist.bsky.social
REACT_APP_THEBE_TOKEN=********
REACT_APP_THEBE_DEV_BINDER=false
REACT_APP_THEBE_JUPYTER_URL=http://localhost:8888
Expand Down
6 changes: 3 additions & 3 deletions src/components/Footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
import { Facebook, GitHub } from 'react-feather'
import DeGruyterLogo from '../../assets/images/Verlag_Walter_de_Gruyter_Logo_Oldenbourg.svg'
import UniluLogo from '../../assets/images/unilu-c2dh-logo.svg'
import BlueskyIcon from '../../assets/icons/bluesky.svg'
import { ReactComponent as BlueskyIcon } from '../../assets/images/bluesky.svg';
import '../../styles/components/Footer.scss'


Expand Down Expand Up @@ -81,8 +81,8 @@ const Footer = ({ hideOnRoutes=[]}) => {
<Col {...BootstrapFullColumLayout}>
<div className="border-top pt-3 mt-3 d-md-flex justify-content-center">
<div className="me-3 mb-3 mb-md-0 ">
<a className="plain-a" href="https://bsky.app/profile/jdighist.bsky.social" target="_blank" rel="noreferrer">
<Bluesky size={15}/> @jdighist.bsky.social
<a className="plain-a" href={`https://bsky.app/profile/${process.env.REACT_APP_BLUESKY}`} target="_blank" rel="noreferrer">
<BlueskyIcon style={{width: '15px'}} /> @{process.env.REACT_APP_BLUESKY}
</a>
</div>
<div className="d-none d-md-block"> &middot;</div>
Expand Down

0 comments on commit 60d3804

Please sign in to comment.