Skip to content

Instantly share code, notes, and snippets.

@chekle
Created September 5, 2023 23:30
Show Gist options
  • Save chekle/3a0b1cea4392ce03f45a925d77c1de30 to your computer and use it in GitHub Desktop.
Save chekle/3a0b1cea4392ce03f45a925d77c1de30 to your computer and use it in GitHub Desktop.
Custom SwiperJS navigation arrows using font awesome
.swiper-button-prev{
&:after{
font-family: "Font Awesome 5 Pro";
content:'\f060';
font-weight:100;
color:$alpha;
}
}
.swiper-button-next{
&:after{
font-family: "Font Awesome 5 Pro";
content:'\f061';
font-weight:100;
color:$alpha;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment