Merge pull request #31693 from overleaf/mj-light-mode-notifications-buttons

[web] Fix buttons in light mode notifications

GitOrigin-RevId: 7934414356b5185999cf7685f8e4c61441279b04
This commit is contained in:
Mathias Jakobsen
2026-02-20 10:02:24 +00:00
committed by Copybot
parent f4dd04e110
commit dd1652bcf6

View File

@@ -49,11 +49,21 @@
:root {
@include light-notification;
// Until we roll out dark mode notifications, make sure we show buttons in
// light mode even when the rest of the page is in dark mode
.ide-redesign-main .notification .btn {
@include light-buttons;
}
@include theme('default') {
.project-ds-nav-page {
.notification {
@include dark-notification;
@include dark-bg;
.btn {
@include dark-buttons;
}
}
}
}