Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Luckyfella73/327056b41ce29749cd83a94686a05b16 to your computer and use it in GitHub Desktop.
Save Luckyfella73/327056b41ce29749cd83a94686a05b16 to your computer and use it in GitHub Desktop.
Swiper slider bullet point circle
// set in config file when using
$swiper-bullet-point-color: #ffffff;
$swiper-bullet-point-size: 13px;
$swiper-bullet-point-border-width: 2px;
.swiper-pagination-bullet {
display: inline-block;
width: $swiper-bullet-point-size;
height: $swiper-bullet-point-size;
background-color: transparent;
border: $swiper-bullet-point-color $swiper-bullet-point-border-width solid;
opacity: 1;
border-radius: 50%;
}
.swiper-pagination-bullet-active {
background-color: $swiper-bullet-point-color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment