From 5ead3476b7c7cc2f199e1cd3ab8507fe35bcb528 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Thu, 28 Apr 2022 14:56:03 +0200 Subject: [PATCH] Normalize overall (font) size The entire UI is a bit too large. This normalizes the font size and dimensions, so it doesn't look zoomed in on most screens. --- app/assets/stylesheets/components/base.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/components/base.css b/app/assets/stylesheets/components/base.css index 45e6263..b8fbc69 100644 --- a/app/assets/stylesheets/components/base.css +++ b/app/assets/stylesheets/components/base.css @@ -1,4 +1,8 @@ @layer base { + html { + font-size: 14px; + } + body { @apply leading-none bg-cover bg-fixed; background-image: linear-gradient(35deg, rgba(255,0,255,0.2) 0, rgba(13,79,153,0.8) 100%), url('/img/bg-1.jpg');