diff --git a/resources/css/app.css b/resources/css/app.css index 3a1fc1f8f..718e0d985 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -89,6 +89,10 @@ nav ul.subnav li { @apply pl-4; } +nav ul.subnav li a i { + @apply mr-2; +} + nav ul li:last-child { @apply pb-0; } @@ -153,6 +157,11 @@ div.thread-card:nth-last-child(2) { padding: 1.675rem 0; } + nav ul.nav>li a { + @apply flex items-center; + height: 30px; + } + nav ul.nav>li:first-child { @apply ml-0; } @@ -166,6 +175,10 @@ div.thread-card:nth-last-child(2) { top: 100%; } + nav ul.subnav.subnav-right { + @apply left-auto right-0; + } + nav ul.subnav.active { @apply block; } @@ -174,6 +187,14 @@ div.thread-card:nth-last-child(2) { @apply border-b p-2; } + nav ul.subnav li.divider { + @apply block p-0 border-2; + } + + nav ul.subnav li.active { + @apply border-b p-2 border-gray-300; + } + nav ul.subnav li:last-child { @apply border-none; } diff --git a/resources/views/layouts/_nav.blade.php b/resources/views/layouts/_nav.blade.php index db9ef4a37..8f7e88777 100644 --- a/resources/views/layouts/_nav.blade.php +++ b/resources/views/layouts/_nav.blade.php @@ -50,11 +50,11 @@