Andrew Wallo 6 months ago
parent
commit
fa00de590b
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      resources/views/components/panel-shift-dropdown.blade.php

+ 4
- 2
resources/views/components/panel-shift-dropdown.blade.php View File

49
             />
49
             />
50
         </button>
50
         </button>
51
     </div>
51
     </div>
52
-    <div x-show="open"
53
-         class="flex flex-col transition duration-200 ease-in-out grow shrink mt-4 fixed z-10 w-screen max-w-[360px] end-4 sm:end-8 rounded-lg bg-white shadow-lg ring-1 ring-gray-950/5 dark:bg-gray-900 dark:ring-white/10 overflow-hidden">
52
+    <div
53
+        x-show="open"
54
+        class="flex flex-col transition duration-200 ease-in-out grow shrink top-16 fixed z-10 w-screen max-w-[360px] end-4 sm:end-8 rounded-lg bg-white shadow-lg ring-1 ring-gray-950/5 dark:bg-gray-900 dark:ring-white/10 overflow-hidden"
55
+    >
54
         @foreach($panels as $panelId => $panel)
56
         @foreach($panels as $panelId => $panel)
55
             <x-panel-shift-dropdown.panel :panel-id="$panelId">
57
             <x-panel-shift-dropdown.panel :panel-id="$panelId">
56
                 @if($panelId !== 'main' && isset($panel['label']))
58
                 @if($panelId !== 'main' && isset($panel['label']))

Loading…
Cancel
Save