File size: 341 Bytes
74e8f2f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@import '../style/colors';

.message {
  padding: 0.1rem 0.5rem;
  margin-bottom: 1rem;
}

.warning {
  background: var(--warn-bg);
  color: var(--warn-fg);
}

.error {
  background: var(--error-bg);
  color: var(--error-fg);
}

.info {
  background: var(--note-bg);
  color: var(--note-fg);
}

.close {
  float: right;
  cursor: pointer;
}