fix(quotesdb): make site footer stick to bottom of viewport

Yew's Renderer::new() renders into <body>, 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 <noreply@anthropic.com>
quotesdb
Elijah Voigt 3 months ago
parent deb3ec40f6
commit bac6696c4b

@ -38,6 +38,8 @@ body {
color: var(--color-text); color: var(--color-text);
line-height: 1.6; line-height: 1.6;
min-height: 100vh; min-height: 100vh;
display: flex;
flex-direction: column;
} }
#app { #app {

Loading…
Cancel
Save