0

How to make the ends rounded in my spinner? enter image description here I have this spinner

I need something like this enter image description here Required

  &__spinner {
    font-size: 14px;
    display: inline-block;
    font-weight: normal;
    color: rgba($brand-primary-darker, .5);
    white-space: nowrap;
    padding: 0 20px 23px 0;

    &::after {
      display: inline-block;
      vertical-align: middle;
      content: '';
      border: 5px solid mix($brand-primary, #fff, 30%);
      border-top-color: $brand-primary;
      border-radius: 50%;
      width: 46px;
      height: 46px;
      margin: 0 -20px 0 0;
      animation: spinning 1.5s linear infinite;
    }
  }
Vitaliy.Makogon
  • 354
  • 3
  • 15

0 Answers0