From bac6696c4bebfbbe736b1e694046680d41d41b96 Mon Sep 17 00:00:00 2001 From: Elijah Voigt Date: Mon, 9 Mar 2026 20:49:57 -0700 Subject: [PATCH] fix(quotesdb): make site footer stick to bottom of viewport Yew's Renderer::new() renders into , not #app, so the flex column layout on #app had no effect. Move display:flex and flex-direction:column to body so .main-content{flex:1} correctly pushes .site-footer to the bottom of the viewport. Co-Authored-By: Claude Sonnet 4.6 --- quotesdb/src/bin/ui/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quotesdb/src/bin/ui/style.css b/quotesdb/src/bin/ui/style.css index c56d3fd..7748e65 100644 --- a/quotesdb/src/bin/ui/style.css +++ b/quotesdb/src/bin/ui/style.css @@ -38,6 +38,8 @@ body { color: var(--color-text); line-height: 1.6; min-height: 100vh; + display: flex; + flex-direction: column; } #app {