From a60f9ef4dc4b51899c000a503765a01e31e7847a Mon Sep 17 00:00:00 2001 From: Conor Wright Date: Tue, 20 Nov 2018 09:39:47 -0500 Subject: [PATCH] added overflow-y auto scrolling to each section;restricted height to parent --- .../modules/sectioned-form/sectioned-form.component.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/public/modules/sectioned-form/sectioned-form.component.scss b/src/app/public/modules/sectioned-form/sectioned-form.component.scss index e814e82..36ea15e 100644 --- a/src/app/public/modules/sectioned-form/sectioned-form.component.scss +++ b/src/app/public/modules/sectioned-form/sectioned-form.component.scss @@ -4,14 +4,17 @@ @media (min-width: $sky-screen-sm-min) { .sky-sectioned-form { display: flex; + max-height: 100%; } .sky-sectioned-form-tabs { flex-basis: 30%; + overflow-y: auto; @include sky-border(light, right); } .sky-sectioned-form-content { flex-basis: 70%; + overflow-y: auto; } }