mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
4138f9707a
Migrate history versions list to Bootstrap 5 GitOrigin-RevId: 4e006ad353cb11eadaefb2df41d2b8591003c664
19 lines
398 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|