From 32e90bf0720c2757c97bc9e45853a58e461c33d3 Mon Sep 17 00:00:00 2001 From: h-east Date: Mon, 16 Dec 2024 13:16:59 +0900 Subject: [PATCH 1/2] Fix the headline from wrapping --- style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/style.css b/style.css index c27d89378..a6dfd2b20 100644 --- a/style.css +++ b/style.css @@ -29,6 +29,7 @@ body { h1, h2, h3 { margin: 1em; + white-space: nowrap; } .Todo { color: #0000ff; From e455339f178f73e428e4d7fc010e747182a19c2a Mon Sep 17 00:00:00 2001 From: h-east Date: Mon, 16 Dec 2024 16:35:24 +0900 Subject: [PATCH 2/2] Changed to the solution proposed by @k-takata --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index a6dfd2b20..baa3afc57 100644 --- a/style.css +++ b/style.css @@ -17,6 +17,7 @@ div#SearchForm { float: right; width: 200px; + margin-top: -1em; } body { @@ -29,7 +30,6 @@ body { h1, h2, h3 { margin: 1em; - white-space: nowrap; } .Todo { color: #0000ff;