From c153525fcca88707cdf74a268ff2b551c11dddfd Mon Sep 17 00:00:00 2001 From: Sergey Andrievskiy Date: Wed, 19 Jun 2019 14:48:16 +0300 Subject: [PATCH] fix(visitors): remove slide out inset shadow --- .../e-commerce/slide-out/slide-out.component.scss | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/app/pages/e-commerce/slide-out/slide-out.component.scss b/src/app/pages/e-commerce/slide-out/slide-out.component.scss index 6158a81e..1e1105fc 100644 --- a/src/app/pages/e-commerce/slide-out/slide-out.component.scss +++ b/src/app/pages/e-commerce/slide-out/slide-out.component.scss @@ -40,7 +40,6 @@ background: nb-theme(slide-out-background); box-shadow: nb-theme(slide-out-shadow-color); @include nb-rtl(box-shadow, nb-theme(slide-out-shadow-color-rtl)); - filter: blur(3px); opacity: 0.9; z-index: 1; } @@ -51,7 +50,7 @@ } .slide-out-container.expanded { - left: calc(100% - #{$slide-out-container-width}); + left: calc(100% + 1px - #{$slide-out-container-width}); @include nb-rtl(left, auto); @include nb-rtl(right, calc(100% - #{$slide-out-container-width})); } @@ -76,8 +75,8 @@ } .slide-out-container.expanded { - left: calc(100% - #{$slide-out-container-width}); - @include nb-rtl(right, calc(100% - #{$slide-out-container-width})); + left: calc(100% + 1px - #{$slide-out-container-width}); + @include nb-rtl(right, calc(100% + 1px - #{$slide-out-container-width})); } } @@ -93,12 +92,12 @@ } .slide-out-container.collapsed { - left: calc(100% - 3rem); + left: calc(100% + 1px - 3rem); @include nb-rtl(right, calc(100% - 3rem)); } .slide-out-container.expanded { - left: calc(100% - #{$slide-out-container-width}); + left: calc(100% + 1px - #{$slide-out-container-width}); @include nb-rtl(right, calc(100% - #{$slide-out-container-width})); } }