Change breakpoint to hide navigation at 1300px to prevent wrapping of navigation items

This commit is contained in:
Lorenz Padberg 2024-05-01 09:41:26 +02:00
parent cc3b6a9c37
commit e7ac052287
1 changed files with 3 additions and 1 deletions

View File

@ -171,7 +171,9 @@ export default {
display: none; display: none;
flex-direction: row; flex-direction: row;
@include desktop { //@include desktop
// Overwrite desktop breakpoint, with time2learn link enabled navigation items start to wrap
@media (min-width: 1300px) {
display: flex; display: flex;
} }
} }