overleaf/services/web/frontend/stylesheets/bootstrap-5/components/system-messages.scss
Tim Down 4138f9707a Merge pull request #20860 from overleaf/td-bs5-history-versions-list
Migrate history versions list to Bootstrap 5

GitOrigin-RevId: 4e006ad353cb11eadaefb2df41d2b8591003c664
2024-10-14 11:11:01 +00:00

19 lines
398 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;
}
}
}