From 3514f25f2b54800b75c04063f6935e7acc7d1134 Mon Sep 17 00:00:00 2001 From: "Eevee (Evelyn Woods)" Date: Tue, 3 Nov 2020 14:40:05 -0700 Subject: [PATCH] Revert part of the hearts/time style improvements to prevent grid blowout from hints --- style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 29ba349..d688da6 100644 --- a/style.css +++ b/style.css @@ -833,7 +833,11 @@ main.--has-demo .demo-controls { "chips inventory" calc((var(--tile-height) * var(--scale) * 2 - 1em) / 3) "time inventory" calc((var(--tile-height) * var(--scale) * 2 - 1em) / 3) "bonus inventory" calc((var(--tile-height) * var(--scale) * 2 - 1em) / 3) - / 1fr min-content + /* FIXME ideally the first column would be 1fr so the hearts/time have space, but that + * allows hints to grow to the entire width of the window, which incredibly sucks. i + * don't know how to get around this except by giving the grid a fixed width, which i + * guess wouldn't be that hard */ + / min-content min-content ; row-gap: 0.5em; column-gap: 1em;