Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: hotfix for meetup presentation #155

Merged
merged 1 commit into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading