Skip to content

Commit

Permalink
Merge pull request #37 from ScilifelabDataCentre/updated-logo
Browse files Browse the repository at this point in the history
Updated logo and better responsive layout
  • Loading branch information
JanProgrammierung authored Apr 17, 2024
2 parents 69a0aef + d040b2e commit 1b8151e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions pmp-frontend-app/src/components/HeaderComponent.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Link, NavLink } from 'react-router-dom';
import { ILink } from '../interfaces/types';
import { BUTTON_TYPE_ONE, LINK_CLASSES } from '../constants';
import sciLifeLogo from '../assets/SciLifeLab logo/NEG/Digital/SciLifeLab_Logotype_NEG.png';
import sciLifeLogo from '../assets/SciLifeLab logo/Precisionmedicineportal_logo_white.png';
import { useLocation } from 'react-router-dom';
import { AboutPageContent, ContactPageContent, DataSourcesPageContent, EventsAndTrainingsPageContent, HomePageContent, PrivacyPageContent } from '../content/content';

Expand Down Expand Up @@ -59,7 +59,7 @@ export default function HeaderComponent() {
<div className="navbar px-8">
<div className="navbar-start">
<Link to="/">
<img className="h-auto w-80" src={sciLifeLogo} alt="SciLifeLab Logo" />
<img className="h-auto w-auto 2xl:max-w-2xl" src={sciLifeLogo} alt="SciLifeLab Logo" />
</Link>
</div>
<div className="navbar-center lg:flex">
Expand All @@ -69,7 +69,7 @@ export default function HeaderComponent() {
))}
</ul>
</div>
<div className="navbar-end">
<div className="navbar-end hidden 2xl:block">
</div>
{/*
// This is the signin button. We can add this again once we have a user page, login, registration and features for users.
Expand Down

0 comments on commit 1b8151e

Please sign in to comment.