Created
September 5, 2023 23:30
-
-
Save chekle/3a0b1cea4392ce03f45a925d77c1de30 to your computer and use it in GitHub Desktop.
Custom SwiperJS navigation arrows using font awesome
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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