Skip to content

Commit

Permalink
fix: 795 - fix css specificity
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiozeppo committed Feb 25, 2025
1 parent 7c19a46 commit e8f001e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/core/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,15 @@ figure {
}

.carousel-slider {
.control-next,
.control-prev {
.control-arrow.control-next,
.control-arrow.control-prev {
--slider-arrow-btn-height: 45px;

top: calc(50% - var(--slider-arrow-btn-height) / 2) !important;
top: calc(50% - var(--slider-arrow-btn-height) / 2);
}

.control-next,
.control-prev {
display: flex;
align-items: center;
justify-content: center;
Expand Down

0 comments on commit e8f001e

Please sign in to comment.