From d9bbc3e7c23c0cbb199a75cadac68075df7ceb27 Mon Sep 17 00:00:00 2001 From: ShadowLarkens Date: Wed, 23 Jun 2021 18:56:32 -0700 Subject: [PATCH] Make scrollable sections only display the scrollbar if necessary --- tgui/packages/tgui/styles/components/Section.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tgui/packages/tgui/styles/components/Section.scss b/tgui/packages/tgui/styles/components/Section.scss index 3221f76cb02..2d7792e5179 100644 --- a/tgui/packages/tgui/styles/components/Section.scss +++ b/tgui/packages/tgui/styles/components/Section.scss @@ -95,7 +95,7 @@ $separator-color: colors.$primary !default; overflow-y: hidden; & > .Section__rest > .Section__content { - overflow-y: scroll; + overflow-y: auto; overflow-x: hidden; } }