overleaf/services/web/frontend/stylesheets/bootstrap-5/components/system-messages.scss
ilkin-overleaf 6437059783 Merge pull request #20063 from overleaf/ii-bs5-system-notifications
[web] BS5 system notifications

GitOrigin-RevId: a5a17a418193e325c0f561708c99240191cff8e7
2024-08-28 11:35:13 +00:00

25 lines
490 B
SCSS

@use 'sass:color';
.system-messages {
@include list-unstyled;
margin: 0;
.system-message {
padding: var(--spacing-03) var(--spacing-05);
background-color: var(--bg-info-01);
color: var(--content-primary-dark);
border-bottom: solid 1px color.adjust($blue-50, $lightness: 10%);
a {
color: var(--content-primary-dark);
text-decoration: underline;
}
}
}
.system-message .close {
@include reset-button;
color: var(--content-primary-dark);
}