Nenhuma descrição

style.scss 496B

12345678910111213141516171819202122232425262728
  1. @import '~scssinc';
  2. .bf-switch{
  3. position: relative;
  4. width: 40px;
  5. height: 20px;
  6. background-color: rgba(#fff, .15);
  7. border-radius: 10px;
  8. transition: background .3s;
  9. &.active{
  10. background-color: $COLOR_ACTIVE;
  11. &::before{
  12. left: 20px;
  13. }
  14. }
  15. &::before{
  16. position: absolute;
  17. left: 0;
  18. display: block;
  19. width: 20px;
  20. height: 20px;
  21. border-radius: 10px;
  22. background-color: #eee;
  23. content: '';
  24. transform: scale(1.2);
  25. transition: .3s;
  26. }
  27. }