You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One way I can think of is adjusting slider styles within scss file.
First, follow steps to configure your own scss file for that slider: #147 (comment)
Second, find that part:
@media all and (max-width:520px) {
visibility: hidden;
}
and remove visibility: hidden
voilà:
bonus:
You will probably want to adjust them to your needs. Just get back to part mentioned above and play with styles like how animation behaves, arrow size. Here's example on how to reduce their size.
@media all and (max-width:520px) {
&__arrow-left, {
height:20px!important;
margin-left:20px;
}
&__arrow-right {
height:20px!important;
margin-right:20px;
}
}
I just started using this package today, I want to know how to display organicArrows on mobile view. I am using
organicArrows={true}
I know on mobile view by default arrows visibility is hidden, how I can change it's visibility ?
The text was updated successfully, but these errors were encountered: