mirror of https://github.com/MaxLeiter/Drift
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
338 B
CSS
28 lines
338 B
CSS
.note {
|
|
font-size: 0.8em;
|
|
color: var(--fg);
|
|
margin: 0;
|
|
padding: var(--gap);
|
|
margin-top: 0.5em;
|
|
margin-bottom: 0.5em;
|
|
border-radius: var(--radius);
|
|
}
|
|
|
|
.info {
|
|
background: var(--gray);
|
|
}
|
|
|
|
.warning {
|
|
background: #f33;
|
|
}
|
|
|
|
.error {
|
|
background: #f33;
|
|
}
|
|
|
|
.type {
|
|
color: var(--fg);
|
|
margin-right: 0.5em;
|
|
text-transform: capitalize;
|
|
}
|