From 5ead3476b7c7cc2f199e1cd3ab8507fe35bcb528 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Thu, 28 Apr 2022 14:56:03 +0200 Subject: [PATCH 1/2] 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'); From 5c48055ac82099528a7e3d57894b3f5847022961 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Thu, 28 Apr 2022 15:01:20 +0200 Subject: [PATCH 2/2] Use feather icon for wallet on dashboard fixes #51 --- app/views/dashboard/index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/dashboard/index.html.erb b/app/views/dashboard/index.html.erb index bb8619e..9f39bb4 100644 --- a/app/views/dashboard/index.html.erb +++ b/app/views/dashboard/index.html.erb @@ -25,7 +25,7 @@

- 🗲 + <%= render partial: "icons/zap", locals: { custom_class: "text-amber-500 h-4 w-4 inline" } %> <%= link_to "Lightning Wallet", wallet_path, class: "ks-text-link" %>