react-slidy icon indicating copy to clipboard operation
react-slidy copied to clipboard

Support gap between items?

Open imhuynq opened this issue 3 years ago • 1 comments

Hello, I hope this library support gap prop for the component, it's very helpful

imhuynq avatar Mar 13 '21 08:03 imhuynq

Do you mean to have space between items in multiple slides? You can achieve this by wrapping your image in a div and add it a margin: 0 X value to it.

js

<ReactSlidy numOfSlides={3}>
  <Number className="item" num={1} />
  <Number className="item" num={1} />
  <Number className="item" num={1} />
  <Number className="item" num={1} />
</ReactSlidy>

css

.item{
     margin: 0 20px;
}

Alverd04 avatar Feb 14 '22 20:02 Alverd04