From 1cfa09e46c907ab4959cff7c6fb70ba050c7ead4 Mon Sep 17 00:00:00 2001 From: Ben Haynes Date: Wed, 13 Jan 2021 18:21:45 -0500 Subject: [PATCH] improve sizing/spacing on page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This could be converted to a Project Setting option… which might be nice :) --- app/src/views/private/private-view.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/src/views/private/private-view.vue b/app/src/views/private/private-view.vue index f6fc48c5e3..b196d3953a 100644 --- a/app/src/views/private/private-view.vue +++ b/app/src/views/private/private-view.vue @@ -203,6 +203,14 @@ export default defineComponent({ scroll-padding-top: 100px; scroll-behavior: smooth; + // Page Content Spacing (Could be converted to Project Setting toggle) + font-size: 15px; + line-height: 24px; + --border-radius: 6px; + --input-height: 60px; + --input-padding: 16px; // (60 - 4 - 24) / 2 + --form-vertical-gap: 52px; + main { display: contents; }