diff --git a/projects/go-lib/src/lib/components/go-action-sheet/go-action-sheet.component.scss b/projects/go-lib/src/lib/components/go-action-sheet/go-action-sheet.component.scss index 830d1914e..d4182ab0f 100644 --- a/projects/go-lib/src/lib/components/go-action-sheet/go-action-sheet.component.scss +++ b/projects/go-lib/src/lib/components/go-action-sheet/go-action-sheet.component.scss @@ -10,13 +10,13 @@ $as-before-box-diag-width: 21.21px; position: relative; &__scroll-container { - max-height: 375px; - overflow: auto; + overflow: hidden; } &__content { border-radius: $global-radius; - overflow: hidden; + max-height: 375px; + overflow: auto; } &__content-container { diff --git a/projects/go-lib/src/lib/components/go-action-sheet/go-panel/go-panel.component.scss b/projects/go-lib/src/lib/components/go-action-sheet/go-panel/go-panel.component.scss index 6c3c5f678..45fdb42fe 100644 --- a/projects/go-lib/src/lib/components/go-action-sheet/go-panel/go-panel.component.scss +++ b/projects/go-lib/src/lib/components/go-action-sheet/go-panel/go-panel.component.scss @@ -61,12 +61,8 @@ $theme-light-transparentized: rgba($theme-light-color, .5); color: $ui-color-negative; } - .go-panel { - &__title { - & &-text { - color: $ui-color-negative; - } - } + .go-panel__title-text { + color: $ui-color-negative; } } diff --git a/projects/go-lib/src/lib/components/go-side-nav/go-side-nav/go-side-nav.component.html b/projects/go-lib/src/lib/components/go-side-nav/go-side-nav/go-side-nav.component.html index 42549bf3b..5ac52cad1 100644 --- a/projects/go-lib/src/lib/components/go-side-nav/go-side-nav/go-side-nav.component.html +++ b/projects/go-lib/src/lib/components/go-side-nav/go-side-nav/go-side-nav.component.html @@ -40,6 +40,7 @@

{{ appDrawerHeader }}

diff --git a/projects/go-style-guide/src/app/app.component.scss b/projects/go-style-guide/src/app/app.component.scss index 69803c173..f1e3fce26 100644 --- a/projects/go-style-guide/src/app/app.component.scss +++ b/projects/go-style-guide/src/app/app.component.scss @@ -104,3 +104,9 @@ code { border-radius: $global-radius; padding: $column-gutter; } + +.go-action-sheet-items { + span.go-panel__title-text { + font-family: $secondary-font-stack !important; + } +}