From f11aae3898dd9f416993a7bd13d2025e8939fa59 Mon Sep 17 00:00:00 2001 From: Damian Myrda Date: Sun, 8 Sep 2024 21:09:15 -0500 Subject: [PATCH] Updated logo Made logo fix on small screens --- web/.gitignore | 1 + web/templates/index.html | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/web/.gitignore b/web/.gitignore index b0c33e9..9965add 100644 --- a/web/.gitignore +++ b/web/.gitignore @@ -1,2 +1,3 @@ /data/ /config/ +/public/ diff --git a/web/templates/index.html b/web/templates/index.html index a00cf3b..c03960d 100644 --- a/web/templates/index.html +++ b/web/templates/index.html @@ -46,6 +46,13 @@ #firstname, #middle, #lastname { display: table-cell; } + + @media (max-width: 480px) { + #firstname, #middle, #lastname { + font-size: 16px !important; + line-height: 18px !important; + } + }

-- 2.43.4