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 navbar: correct logo style using clsx #651

Closed
wants to merge 1 commit into from

Conversation

qvkare
Copy link

@qvkare qvkare commented Dec 18, 2024

Logo styles were not being properly applied due to incorrect classname syntax in navbar component.

- className={(styles.logo, styles.tabletOnly)}
+ className={clsx(styles.logo, styles.tabletOnly)}
- className={(styles.logo, styles.desktopOnly)}
+ className={clsx(styles.logo, styles.desktopOnly)}
  • fixed logo width 1rem
  • restored proper responsive behavior
  • aligned with projects clsx pattern

@qvkare qvkare closed this Jan 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant