From aa1f4f5795b53f5f28b503cbefe030fdf39abf36 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Tue, 20 Feb 2024 20:53:07 -0500 Subject: [PATCH] ui: reasonable default padding --- static/site.css | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/static/site.css b/static/site.css index d8de113..b0d8f82 100644 --- a/static/site.css +++ b/static/site.css @@ -1,18 +1,22 @@ +body * { + padding-left: .3em; + padding-right: .3em; +} + .column-flex { - display: flex; - flex-direction: column; + display: flex; + flex-direction: column; } .row-flex { - display: flex; - flex-direction: row; + display: flex; + flex-direction: row; } .flex-item-grow { - flex: 1 0 auto; + flex: 1 0 auto; } .flex-item-shrink { - flex: 0 1 auto; + flex: 0 1 auto; } -