limit scrolling to bar menu in navbar

pull/5097/head
Mohamed Tarek 3 months ago
parent 43689d5069
commit 9d4241c53d

@ -52,7 +52,6 @@ watchEffect(() => {
@media (min-width: 960px) {
.VPNav {
position: fixed;
overflow-x: scroll;
}
}
</style>

@ -183,7 +183,8 @@ watchPostEffect(() => {
}
.content-body {
display: flex;
display: grid;
grid-auto-flow: column;
justify-content: flex-end;
align-items: center;
height: var(--vp-nav-height);

@ -35,6 +35,7 @@ const { theme } = useData()
@media (min-width: 768px) {
.VPNavBarMenu {
display: flex;
overflow-x: auto;
}
}
</style>

Loading…
Cancel
Save