ad188f2742
* 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>
30 lines
567 B
SCSS
30 lines
567 B
SCSS
: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 {
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 10px;
|
|
background-color: transparent;
|
|
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);
|
|
}
|