Browse Source

feat(frontend): use dynamic flex sizing for view container

Miguel Ángel Moreno 1 year ago
parent
commit
b531fcbc51
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/frontend/tubo/views.cljs

+ 1 - 1
src/frontend/tubo/views.cljs

@@ -125,7 +125,7 @@
     [:div {:class (when (= current-theme "dark") "dark")}
      [:div.min-h-screen.flex.flex-col.h-full.dark:text-white.dark:bg-neutral-900.relative
       [navbar current-match]
-      [:div.flex.flex-col.justify-between.relative.font-nunito {:style {:minHeight "100vh"}}
+      [:div.flex.flex-col.flex-auto.justify-between.relative.font-nunito
        (when-let [view (-> current-match :data :view)]
          [view current-match])
        [footer]