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

fixed 992px header size collapse issue #453 #454

Merged
merged 6 commits into from
Apr 9, 2024
Merged
Changes from 2 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
6 changes: 3 additions & 3 deletions frontend/src/pages/landing/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function Header() {
const logo = isDarkMode ? RunItLogoDark : RunItLogoLight;
return (
<header>
<Navbar expand="lg">
<Navbar expand="xl">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Мне кажется что это слишком много. См скрин - поменял класс на -lg, выглядит неплохо
image

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

А ширина какая на скриншоте? Я специально поменял на xl, потому что проблема же на 1168 пикселей идет. Коллапс на lg сворачивает когда разрешение 991, что раньше необходимого. Пришлось сделать на XL, чтобы кнопка поместилась. Вот скрин как у меня на 1138 с lg.
Снимок экрана 2024-04-09 в 12 43 11

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

а, я понял. Да, с русским текстом хедер становится шире. Я проверял на 1024
image
image

Я думаю пока ваш вариант ок, в будущем можно убрать лишнее из хедера.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Я могу предложить другой вариант. Можно уменьшить логотип до 150 пикселей в ширину. Тогда и коллапс останется на lg, как и @fey сделал. Получилось вот так. И все как раз влезает.
Снимок экрана 2024-04-09 в 12 48 54

<Container className="justify-content-between">
<Navbar.Brand className="mr-5">
<Image src={logo} />
Expand All @@ -34,7 +34,7 @@ function Header() {
<Image src={Burger} />
</Navbar.Toggle>
<Navbar.Collapse className="my-3 mb-lg-0" id="navbar-responsive">
<Nav as="ul" className="text-center">
<Nav as="ul" className="text-left text-xl-center">
<li>
<Navbar.Brand className="header-link" href="#aboutProject">
<span>{t('landing.header.about')}</span>
Expand All @@ -58,7 +58,7 @@ function Header() {
</Nav>
<Nav
as="ul"
className="mb-3 mb-lg-0 gap-1 ms-auto align-items-center"
className="mb-3 mb-lg-0 gap-1 ms-auto align-items-xl-center align-items-start"
>
<LanguageSelector />
<ThemeSelector />
Expand Down
Loading