Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ html[data-theme="dark"] .badge {
background-image: url("/img/rss-mark.svg");
background-size: contain;
content: "";
position: relative;
position: inherit;
width: 24px;
height: 24px;
}
Expand Down Expand Up @@ -229,7 +229,7 @@ html[data-theme="dark"] g[class^='label'] text {
height: 20px;
justify-content: center;
position: absolute;
right: -5px;
right: -2px;
top: 2px;
width: 20px;
}
Expand All @@ -238,9 +238,10 @@ html[data-theme="dark"] g[class^='label'] text {
background-color: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 4px;
left: 12px;
position: absolute;
top: 38px;
width: 300px;
width: 293px;
z-index: 1000;
}

Expand Down Expand Up @@ -274,9 +275,10 @@ html[data-theme="dark"] .notification-dropdown {
border-bottom: 1px solid invert(90%);
border-radius: 4px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
left: 12px;
position: absolute;
top: 38px;
width: 300px;
width: 293px;
z-index: 1000;
}

Expand All @@ -292,7 +294,7 @@ html[data-theme="dark"] .notification-dropdown {
@media (max-width: 997px) {
.navbar-sidebar .notification-wrapper {
display: flex; /* Make it visible only in the sidebar on mobile */
position: sticky;
position: relative;
}

.notification-count {
Expand All @@ -305,7 +307,7 @@ html[data-theme="dark"] .notification-dropdown {
height: 20px;
justify-content: center;
position: relative;
right: 0px;
right: 2px;
top: 2px;
width: 20px;
}
Expand Down
Loading