Skip to content

Commit

Permalink
fix: fix navigation-bar display on large screens
Browse files Browse the repository at this point in the history
Убрал отображение Navigation Bar для широких экранов

closes #230
  • Loading branch information
kavabunga committed Jan 8, 2024
1 parent f32433f commit d6bd7f9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/navigation-bar/navigation-bar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@
width: 100%;
background-color: #fff;
padding: 0;
display: flex;
display: none;
justify-content: space-between;
align-items: center;
z-index: 150;
transition: background-color 0.7s;

@media screen and (width <= 768px) {
display: flex;
}
}

.burger-icon {
Expand Down

0 comments on commit d6bd7f9

Please sign in to comment.