React-slick: Issues rendering arrows

Created on 24 Dec 2017  路  2Comments  路  Source: akiran/react-slick

Latest doesn't render arrows for me:

Demo: https://codesandbox.io/s/11k31p2zj

I see other people reporting the same issue, but have closed them without posting a solution.

Most helpful comment

Its a styling issue
using this styles in your codesandbox shows the arrows

const styles = {
  fontFamily: "sans-serif",
  textAlign: "center",
  background: "#ccc",
  padding: '50px'
};

All 2 comments

@Magneticmagnum It looks like that the background color of the arrows are white, hence they are not visible.
Just add
button.slick-arrow.slick-prev { background-color: black; }
and you will see the previous button on the view.

Its a styling issue
using this styles in your codesandbox shows the arrows

const styles = {
  fontFamily: "sans-serif",
  textAlign: "center",
  background: "#ccc",
  padding: '50px'
};
Was this page helpful?
0 / 5 - 0 ratings

Related issues

artemidas picture artemidas  路  4Comments

enriquelopez-atlas picture enriquelopez-atlas  路  3Comments

laveesingh picture laveesingh  路  3Comments

adamthewan picture adamthewan  路  4Comments

jfamousket picture jfamousket  路  3Comments