Carousel - how to move the arrows and dot indicators closer to border/edge #15146
Answered
by
metalsadman
buffalus
asked this question in
General - Components / Directives / etc
-
Hi, Re: Carousel I need help how to move the left/right arrows and dot indicators more closer to border/edge. Is it possible to use CSS padding? |
Beta Was this translation helpful? Give feedback.
Answered by
metalsadman
Dec 20, 2022
Replies: 1 comment 1 reply
-
add negative margins .q-carousel__prev-arrow{
margin-left: -15px;
}
.q-carousel__next-arrow{
margin-right: -15px;
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
buffalus
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
add negative margins