From c20cdfba53efccfd120563d6e08e496bb3791a2e Mon Sep 17 00:00:00 2001 From: Deimos Date: Sun, 18 Aug 2019 16:39:02 -0600 Subject: [PATCH] Make width of collapsed
consistent Previously the collapsed
would match the width of their content, but this made them a little harder to recognize, and were difficult to click on in (unusual) cases such as using a link as the . Having them full-width like this should be fine with the border, and fix those issues. --- tildes/scss/_placeholders.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tildes/scss/_placeholders.scss b/tildes/scss/_placeholders.scss index 96aae4d..55c4424 100644 --- a/tildes/scss/_placeholders.scss +++ b/tildes/scss/_placeholders.scss @@ -18,7 +18,7 @@ &:not([open]) { cursor: pointer; - width: max-content; + max-width: $paragraph-max-width; } }