NotifyReminderPopup.module.scss 594 B

1234567891011121314151617181920212223242526272829
  1. :export {
  2. popupBackgroundColor: var(--theme-color-components-primary-button-background);
  3. }
  4. .contentbutton {
  5. background-color: transparent;
  6. border: none;
  7. text-align: left;
  8. cursor: pointer;
  9. color: var(--theme-color-components-text-on-dark);
  10. }
  11. .closebutton {
  12. position: absolute;
  13. right: 10px;
  14. top: 10px;
  15. background-color: transparent;
  16. border: none;
  17. font-size: 1.3rem;
  18. cursor: pointer;
  19. color: var(--theme-color-components-text-on-dark);
  20. }
  21. .title {
  22. border-bottom: none;
  23. font-weight: bold;
  24. padding-left: 5px;
  25. color: var(--theme-color-components-text-on-dark);
  26. }