Skip to content
Merged
Changes from all 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
14 changes: 9 additions & 5 deletions resources/css/components/nav-main.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,25 @@
========================================================================== */

.nav-main {
@apply hidden select-none bg-white shadow h-screen absolute rtl:right-0 ltr:left-0 overflow-scroll w-56;
@apply hidden select-none bg-white shadow absolute rtl:right-0 ltr:left-0 overflow-scroll w-56;
@apply dark:bg-dark-800 dark:shadow-dark;

transition: all .3s;
height: calc(100dvh - 52px);
.showing-license-banner & {
height: calc(100dvh - 105px);
}

h6 { @apply mt-6; }

ul {
@apply list-none p-0 mt-0;
}

ul:last-child {
@apply pb-8;
}

li {
@apply p-0 text-sm;
margin-top: 6px;
Expand Down Expand Up @@ -70,10 +78,6 @@
@screen md {
.nav-main {
@apply fixed flex bg-transparent shadow-none overflow-auto rtl:border-l ltr:border-r dark:border-dark-900;
height: calc(100% - 52px);
.showing-license-banner & {
height: calc(100% - 105px);
}

.nav-closed & {
@apply border-0 shadow-none;
Expand Down