mirror of
https://github.com/owncast/owncast.git
synced 2024-11-29 19:49:31 +03:00
f112f9813d
* NotifyReminderPopup uses a custom Popover * fix Popover resizing in storybook * Prettified Code! --------- Co-authored-by: janWilejan <> Co-authored-by: janWilejan <janWilejan@users.noreply.github.com>
30 lines
604 B
SCSS
30 lines
604 B
SCSS
:export {
|
|
popupBackgroundColor: var(--theme-color-components-primary-button-background);
|
|
}
|
|
|
|
.contentbutton {
|
|
width: 150px;
|
|
background-color: transparent;
|
|
border: none;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
color: var(--theme-color-components-text-on-dark);
|
|
}
|
|
|
|
.closebutton {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
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);
|
|
}
|