mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
20 lines
398 B
SCSS
20 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;
|
||
|
}
|
||
|
}
|
||
|
}
|