Skip to content

Commit

Permalink
fix: hotfix for meetup presentation (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lennart01 authored Jan 25, 2024
1 parent 8755722 commit faa08c2
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 5 deletions.
Binary file added public/assets/images/Headerbild_4dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/Headerbild_4light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/Stan_Avatar_4dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/Stan_Avatar_4light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/UserMenu/UserMenu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
}
@media (prefers-color-scheme: dark) {
.user-menu__avatar > img {
content: url(/assets/images/Stan_dark.svg);
content: url(/assets/images/Stan_Avatar_4dark.png);
}
}
.user-menu--active {
Expand Down
2 changes: 1 addition & 1 deletion src/components/UserMenu/UserMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const UserMenu = ({germanLabel, englishLabel, loginLabel, logoutLabel}: UserMenu
return (
<div className={classNames("user-menu", {"user-menu--active": isActive})}>
<button id="user-menu__avatar" className="user-menu__avatar" onClick={() => setIsActive(curr => !curr)}>
<img src="/assets/images/Stan_light.svg" alt="Stan Scrumlr" />
<img src="/assets/images/Stan_Avatar_4light.png" alt="Stan Scrumlr" />
</button>
<div id="user-menu__dropdown" className="user-menu__dropdown">
<ul>
Expand Down
1 change: 0 additions & 1 deletion src/pages/[lang]/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export const getStaticPaths = (() => {
<Uniqueness />
<Mobile />
<Features />
<TargetUser />
<Feedback />
<AboutUs />
</Layout>
4 changes: 2 additions & 2 deletions src/views/Hero/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ const content = await getTranslatedContent("Hero_Section", lang!);
</div>
</div>
<img
src="/assets/images/reach-new-heights_light.svg"
src="/assets/images/Headerbild_4light.png"
alt={content.imageAlt1}
class="reach-new-heights__image reach-new-heights__image--light"
/>
<img
src="/assets/images/reach-new-heights_dark.svg"
src="/assets/images/Headerbild_4dark.png"
alt={content.imageAlt1}
class="reach-new-heights__image reach-new-heights__image--dark"
/>
Expand Down

0 comments on commit faa08c2

Please sign in to comment.