mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
fix purple background color for notification reminder pop up & fix failing build (#2224)
* fix notification reminder popup -> purple background * Prettified Code! * resolved color to color variables * Prettified Code! * fix purple bgcolor for notification reminder popp up & fix failing build Co-authored-by: unclebinary1001 <unclebinary1001@users.noreply.github.com>
This commit is contained in:
parent
106e144cba
commit
ad188f2742
2 changed files with 8 additions and 0 deletions
|
@ -1,8 +1,13 @@
|
|||
:export {
|
||||
popupBackgroundColor: var(--theme-color-palette-7);
|
||||
}
|
||||
|
||||
.contentbutton {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
color: var(--theme-color-components-text-on-dark);
|
||||
}
|
||||
|
||||
.closebutton {
|
||||
|
@ -13,10 +18,12 @@
|
|||
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);
|
||||
}
|
||||
|
|
|
@ -70,6 +70,7 @@ export const NotifyReminderPopup: FC<NotifyReminderPopupProps> = ({
|
|||
title={title}
|
||||
content={content}
|
||||
overlayInnerStyle={popupStyle}
|
||||
color={styles.popupBackgroundColor}
|
||||
>
|
||||
{children}
|
||||
</Popover>
|
||||
|
|
Loading…
Reference in a new issue