From acd68d4ec07df75c90da0cfac5c451c93cb1b7bf Mon Sep 17 00:00:00 2001 From: Mikhail Hryb Date: Mon, 18 Sep 2017 11:22:58 +0300 Subject: [PATCH] fix(notifications): notifications responsive --- .../notifications/notifications.component.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/app/pages/components/notifications/notifications.component.scss b/src/app/pages/components/notifications/notifications.component.scss index 1810821c..9c2b3ea9 100644 --- a/src/app/pages/components/notifications/notifications.component.scss +++ b/src/app/pages/components/notifications/notifications.component.scss @@ -1,4 +1,6 @@ @import '../../../@theme/styles/themes'; +@import '~bootstrap/scss/mixins/breakpoints'; +@import '~@nebular/theme/styles/global/bootstrap/breakpoints'; @include nb-install-component() { @@ -9,4 +11,16 @@ margin: 0 1rem 1rem 0; } } + + toaster-container /deep/ { + #toast-container .toast-close-button { + right: 0; + } + } + + @include media-breakpoint-down(xs) { + .dropdown-toggle { + font-size: 0.75rem; + } + } }