Browse Source

changes in image preview

main
Domagoj Zecevic 2 days ago
parent
commit
0d37e5daf2
  1. 6
      internal/web/templates/base.html

6
internal/web/templates/base.html

@ -27,7 +27,11 @@
</nav> </nav>
</aside> </aside>
<main class="flex min-h-screen flex-1 flex-col pb-16 md:pb-0"> <!-- min-w-0 stops the flex child from expanding past its allocated width.
overflow-x-hidden ensures nothing inside (thumbnail strip, etc.) can
cause the page itself to scroll horizontally. The strip's own
overflow-x-auto then handles its internal scroll correctly. -->
<main class="flex min-h-screen flex-1 flex-col overflow-x-hidden pb-16 min-w-0 md:pb-0">
<header class="sticky top-0 z-10 border-b border-slate-800 bg-slate-900/95"> <header class="sticky top-0 z-10 border-b border-slate-800 bg-slate-900/95">
<div class="flex h-14 items-center justify-between px-4 md:px-6"> <div class="flex h-14 items-center justify-between px-4 md:px-6">
<div class="flex items-center gap-3"> <div class="flex items-center gap-3">

Loading…
Cancel
Save