mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-22 02:14:41 -05:00
* Initial * Progress * Fix * Progress * Notifications list page * BADGE_MANAGER_ADDED * Mark as seen initial * Split tables * Progress * Fix styles * Push notifs initial * Progress * Rename * Routines * Progress * Add e2e tests * Done? * Try updating actions * Consistency * Dep fix * A couple fixes
62 lines
893 B
CSS
62 lines
893 B
CSS
.container {
|
|
position: relative;
|
|
}
|
|
|
|
.popoverContainer {
|
|
min-width: 300px;
|
|
padding: 0;
|
|
}
|
|
|
|
.popoverContainer svg {
|
|
width: 16px;
|
|
}
|
|
|
|
.noNotificationsContainer {
|
|
min-height: 200px;
|
|
}
|
|
|
|
.topContainer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
font-size: var(--fonts-sm);
|
|
padding-inline: var(--s-1);
|
|
padding-bottom: var(--s-1);
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.refreshButton {
|
|
margin-block-end: var(--s-1);
|
|
margin-inline-end: var(--s-1);
|
|
}
|
|
|
|
.refreshButton svg {
|
|
stroke-width: 10px;
|
|
}
|
|
|
|
.noNotifications {
|
|
display: grid;
|
|
place-items: center;
|
|
font-weight: var(--semi-bold);
|
|
color: var(--text-lighter);
|
|
margin-block-start: 65px;
|
|
}
|
|
|
|
.divider {
|
|
border-color: var(--border);
|
|
}
|
|
|
|
.unseenDot {
|
|
background-color: var(--theme);
|
|
border-radius: 100%;
|
|
width: 8px;
|
|
height: 8px;
|
|
position: absolute;
|
|
top: 1px;
|
|
left: 1px;
|
|
outline: 2px solid var(--theme-transparent);
|
|
}
|