From cf3e777fd8737c984bd71c648495ddb2d5d56187 Mon Sep 17 00:00:00 2001 From: Andrew Shu Date: Sat, 11 Jul 2020 19:40:22 -0700 Subject: [PATCH] Add bottom padding to topic full text Prevents scrollbar from showing up when there is a subscript on the last line of text. Another option would have been overflow-y: hidden, but that clips the text in the (pathological?) case of deeply nested subscripts. --- tildes/scss/modules/_topic.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/tildes/scss/modules/_topic.scss b/tildes/scss/modules/_topic.scss index 6f126b2..ebf33c8 100644 --- a/tildes/scss/modules/_topic.scss +++ b/tildes/scss/modules/_topic.scss @@ -360,6 +360,7 @@ @extend %text-container; overflow: auto; + padding-bottom: 0.4rem; } .topic-comments-header {