_closeButton.scss 384 B

123456789101112131415161718192021222324252627
  1. .#{$rt-namespace}__close-button {
  2. color: #fff;
  3. background: transparent;
  4. outline: none;
  5. border: none;
  6. padding: 0;
  7. cursor: pointer;
  8. opacity: 0.7;
  9. transition: 0.3s ease;
  10. align-self: flex-start;
  11. &--light {
  12. color: #000;
  13. opacity: 0.3;
  14. }
  15. & > svg {
  16. fill: currentColor;
  17. height: 16px;
  18. width: 14px;
  19. }
  20. &:hover,
  21. &:focus {
  22. opacity: 1;
  23. }
  24. }