mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
6437059783
[web] BS5 system notifications GitOrigin-RevId: a5a17a418193e325c0f561708c99240191cff8e7
25 lines
490 B
SCSS
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);
|
|
}
|