fix: carousel navigation buttons styling

This commit is contained in:
abdou6666 2024-11-28 12:18:35 +01:00
parent 76d87f4316
commit a33a840a00

View File

@ -17,7 +17,7 @@
justify-content: center; justify-content: center;
.sc-message--carousel-element { .sc-message--carousel-element {
padding: 2rem; padding: 1rem 2rem;
width: 100%; width: 100%;
.sc-message--carousel-element-image { .sc-message--carousel-element-image {
@ -51,19 +51,21 @@
color: white; color: white;
border: none; border: none;
cursor: pointer; cursor: pointer;
padding: 10px; // padding: 10px;
z-index: 2; z-index: 2;
font-size: 0.75rem;
&.prev { &.prev {
left: 10px; left: 0px;
width: 2rem; width: 1.5rem;
height: 3rem; height: 2rem;
} }
&.next { &.next {
right: 10px; right: 0px;
width: 2rem; width: 1.5rem;
height: 3rem; // width: 22px;
height: 2rem;
} }
} }
} }