_present.scss 426 B

123456789101112131415161718192021222324252627
  1. .UppyPresenter {
  2. font-size: 25px;
  3. text-align: center;
  4. display: none;
  5. }
  6. .UppyPresenter.is-visible {
  7. display: block;
  8. }
  9. .UppyPresenter-modalClose {
  10. background-image: none;
  11. border: 0;
  12. border-radius: 12px;
  13. font-size: 14px;
  14. line-height: 1;
  15. background-color: $color-pink;
  16. color: $color-white;
  17. padding: 10px 25px;
  18. cursor: pointer;
  19. transition: all 0.3s;
  20. &:hover,
  21. &:focus {
  22. @include zoom();
  23. }
  24. }