diff --git a/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.module.scss b/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.module.scss index 4fa573a5e..cf24bcfbb 100644 --- a/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.module.scss +++ b/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.module.scss @@ -3,7 +3,6 @@ border: none; text-align: left; cursor: pointer; - color: var(--theme-color-components-text-on-dark); } .closebutton { @@ -14,13 +13,10 @@ border: none; font-size: 1.3rem; cursor: pointer; - color: var(--theme-color-components-text-on-dark); } .title { border-bottom: none; font-weight: bold; padding-left: 5px; - color: var(--theme-color-components-text-on-dark); } - diff --git a/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.tsx b/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.tsx index e78a09520..e1a02364b 100644 --- a/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.tsx +++ b/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.tsx @@ -35,9 +35,6 @@ export const NotifyReminderPopup: FC = ({ paddingRight: '10px', fontSize: '16px', }; - const bgColor = getComputedStyle(document.documentElement).getPropertyValue( - '--theme-color-palette-7', - ); const popupClicked = e => { e.stopPropagation(); @@ -73,7 +70,6 @@ export const NotifyReminderPopup: FC = ({ title={title} content={content} overlayInnerStyle={popupStyle} - color={bgColor} > {children}