style.scoped.scss 721 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. $whiteFilter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(116deg)
  2. brightness(109%) contrast(109%);
  3. $darkFilter: invert(48%) sepia(3%) saturate(4%) hue-rotate(326deg)
  4. brightness(110%) contrast(78%);
  5. .orange-button {
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. height: 30px;
  10. padding: 0 25px;
  11. border-radius: 8px;
  12. background-color: rgb(254, 127, 1);
  13. transition: 0.2s;
  14. .icon {
  15. width: 20px;
  16. height: 20px;
  17. margin-right: 5px;
  18. }
  19. .text {
  20. color: black;
  21. }
  22. &:hover {
  23. cursor: pointer;
  24. .text {
  25. color: white;
  26. }
  27. .icon {
  28. filter: $whiteFilter;
  29. }
  30. }
  31. }