From d433e24abab46988de82e57563fee1655f30804d Mon Sep 17 00:00:00 2001 From: MAEDA Go Date: Sun, 15 Feb 2026 17:32:31 +0900 Subject: [PATCH] Reduce reflow cost by adding `position: relative;` to `#wrapper` --- app/assets/stylesheets/application.css | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 9ab5aa695..e914fd92a 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -72,6 +72,7 @@ pre, code {font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace;} overflow: hidden; display: flex; flex-direction: column; + position: relative; } #top-menu { -- 2.50.1