diff --git a/CHANGELOG.md b/CHANGELOG.md index b17ddc7..c7b0850 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to wuttaweb will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## v0.12.1 (2024-08-22) + +### Fix + +- improve home, login page styles for large logo image + ## v0.12.0 (2024-08-22) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 9fc1d83..41fda6b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "WuttaWeb" -version = "0.12.0" +version = "0.12.1" description = "Web App for Wutta Framework" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@edbob.org"}] diff --git a/src/wuttaweb/templates/auth/login.mako b/src/wuttaweb/templates/auth/login.mako index 278992b..7c1d846 100644 --- a/src/wuttaweb/templates/auth/login.mako +++ b/src/wuttaweb/templates/auth/login.mako @@ -4,9 +4,32 @@ <%def name="title()">Login +<%def name="extra_styles()"> + ${parent.extra_styles()} + + + <%def name="page_content()"> -
-
${base_meta.full_logo(image_url or None)}
+
+
${form.render_vue_tag()} diff --git a/src/wuttaweb/templates/base.mako b/src/wuttaweb/templates/base.mako index 6c57c46..c8557ca 100644 --- a/src/wuttaweb/templates/base.mako +++ b/src/wuttaweb/templates/base.mako @@ -151,6 +151,10 @@ white-space: nowrap; } + .wutta-page-content-wrapper { + height: 100%; + } + ############################## ## grids ############################## diff --git a/src/wuttaweb/templates/home.mako b/src/wuttaweb/templates/home.mako index 0af63ef..e387227 100644 --- a/src/wuttaweb/templates/home.mako +++ b/src/wuttaweb/templates/home.mako @@ -4,9 +4,32 @@ <%def name="title()">Home +<%def name="extra_styles()"> + ${parent.extra_styles()} + + + <%def name="page_content()"> -
-
${base_meta.full_logo(image_url or None)}
+
+

Welcome to ${app.get_title()}

diff --git a/src/wuttaweb/templates/page.mako b/src/wuttaweb/templates/page.mako index 840e918..218e9f4 100644 --- a/src/wuttaweb/templates/page.mako +++ b/src/wuttaweb/templates/page.mako @@ -11,7 +11,7 @@ <%def name="render_vue_template_this_page()">