From 82e0b4a4fbc85c9f1f4f7f5683f4aa10a4c6b92b Mon Sep 17 00:00:00 2001 From: Alan Date: Wed, 12 Jun 2019 09:31:04 +0200 Subject: [PATCH] fix(docs-infra): enable only vertical scrolling for contributors bio (#30991) - `auto` will enable scrolling only when needed - `overflow-y` will ensure to keep the scrolling horizontally only PR Close #30991 --- aio/src/styles/2-modules/_contributor.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/src/styles/2-modules/_contributor.scss b/aio/src/styles/2-modules/_contributor.scss index 19db386c19..d0984c1011 100644 --- a/aio/src/styles/2-modules/_contributor.scss +++ b/aio/src/styles/2-modules/_contributor.scss @@ -188,7 +188,7 @@ aio-contributor { line-height: 18px; margin: 8px 16px; text-overflow: ellipsis; - overflow: scroll; + overflow-y: auto; font-weight: 400; } }