Skip to content

Commit

Permalink
fix(Slider): remove side padding
Browse files Browse the repository at this point in the history
  • Loading branch information
aeksandla committed Sep 12, 2023
1 parent f2b321c commit 8a30384
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/blocks/Slider/Slider.scss
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,11 @@ $block: '.#{$ns}SliderBlock';
}

.slick-slide {
padding-right: 0;
// stylelint-disable declaration-no-important
padding-right: 0 !important;
padding-left: 0 !important;
/* stylelint-enable declaration-no-important */

&:last-child {
padding-right: 0;
}
Expand Down

0 comments on commit 8a30384

Please sign in to comment.