-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
feat(web): update logo #7798
feat(web): update logo #7798
Conversation
Deploying with
|
Latest commit: |
538be2d
|
Status: | ✅ Deploy successful! |
Preview URL: | https://516f226b.immich.pages.dev |
Branch Preview URL: | https://feat-web-new-logo.immich.pages.dev |
Does web also include the documentation site? |
No, docs and mobile will be separate PRs :) |
web/src/lib/components/shared-components/navigation-bar/navigation-bar.svelte
Show resolved
Hide resolved
<section id="dashboard-navbar" class="fixed z-[900] h-[var(--navbar-height)] w-screen text-sm"> | ||
<SkipLink>Skip to content</SkipLink> | ||
<div | ||
class="grid h-full grid-cols-[theme(spacing.18)_auto] items-center border-b bg-immich-bg py-2 dark:border-b-immich-dark-gray dark:bg-immich-dark-bg md:grid-cols-[theme(spacing.64)_auto]" | ||
> | ||
<a data-sveltekit-preload-data="hover" class="ml-4" href={AppRoute.PHOTOS}> | ||
<ImmichLogo width="55%" /> | ||
<ImmichLogo width="55%" noText={innerWidth < 770} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we not leverage the tailwind breakpoints and classes here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried to think of a way but couldn't find one since you have to toggle the prop of the component.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could have two elements I guess (with different classes and one has noText and one does not). Idk if that is any better though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, I'd like to keep it in a single component
Todo