From d3cbc687d526cdccdd49103cdb87cd769492ab5d Mon Sep 17 00:00:00 2001 From: Adam French Date: Mon, 9 Mar 2026 18:00:51 +0000 Subject: [PATCH] Fix sidebar on first breakpoint --- nginx/vue/src/views/home/Home.vue | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nginx/vue/src/views/home/Home.vue b/nginx/vue/src/views/home/Home.vue index 85d5cd4..58c358e 100644 --- a/nginx/vue/src/views/home/Home.vue +++ b/nginx/vue/src/views/home/Home.vue @@ -120,6 +120,18 @@ import Consumption from "./Consumption.vue"; .homeGrid { display: flex; flex-direction: column; + height: auto; + } + + .sidebar { + flex-direction: row; + flex-wrap: wrap; + justify-content: center; + } + + .sidebar > * { + max-width: 400px; + width: 100%; } }