From eb26e54906a8a587af8e184723b4d6f3be6098c6 Mon Sep 17 00:00:00 2001 From: HectorVilas <96928935+HectorVilas@users.noreply.github.com> Date: Tue, 17 Jan 2023 19:18:13 -0300 Subject: [PATCH] limit title on main to single line, hide overflow --- src/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/style.css b/src/style.css index e593267..e00d426 100644 --- a/src/style.css +++ b/src/style.css @@ -275,6 +275,8 @@ input:not([type="checkbox"]):focus { .main-page-title { grid-area: title; + white-space: nowrap; + overflow: hidden; } .main-page-todos { grid-area: todos; @@ -406,6 +408,7 @@ header { .card .description:not(.edit-description), .card label, .project-title, +.main-page-title, h1{ mask-image: linear-gradient(to left, transparent, white 50px); }