You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
421B

  1. .popup-container {
  2. background-color: white;
  3. border-radius: 8px;
  4. box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  5. padding: 10px;
  6. position: relative;
  7. }
  8. .popup-header {
  9. display: flex;
  10. justify-content: space-between;
  11. align-items: center;
  12. margin-bottom: 10px;
  13. }
  14. .popup-title {
  15. color: #F33152;
  16. font-weight: 500;
  17. }
  18. .close-button {
  19. cursor: pointer;
  20. color: #eeeeee;
  21. &:hover{
  22. color: #000000;
  23. }
  24. }