3
0

Remove sticky top from topbar and adjust z-index of dropdown menu

This commit is contained in:
Jože Fortun 2023-09-12 16:54:23 +02:00
parent 28980afd63
commit 77f39a0c3b

View File

@ -1,5 +1,5 @@
<template>
<div class="header-navigation d-flex flex-wrap align-items-center sticky-top pr-3">
<div class="header-navigation d-flex flex-wrap align-items-center pr-3">
<div
class="spacer"
:class="{
@ -290,12 +290,6 @@ $nav-user-icon-size: 50px;
padding-left: calc(3.5rem + 6px);
}
.topbar-dropdown-menu {
max-height: 80vh;
overflow-y: auto;
}
.avatar {
border-radius: 50%;
background-size: cover;
@ -351,3 +345,9 @@ $nav-user-icon-size: 50px;
}
}
</style>
<style lang="scss">
.topbar-dropdown-menu {
z-index: 1100;
}
</style>