-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathErrorView.css
More file actions
51 lines (44 loc) · 808 Bytes
/
ErrorView.css
File metadata and controls
51 lines (44 loc) · 808 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.error-view {
padding: 1rem;
height: 100%;
overflow: auto;
}
.error-content {
background-color: #5a1d1d;
border: 1px solid #f48771;
border-radius: 4px;
padding: 1rem;
margin-bottom: 1rem;
}
.error-content h3 {
color: #f48771;
margin: 0 0 0.5rem 0;
font-size: 1rem;
}
.error-message {
color: #ffcccc;
margin: 0;
font-family: "Consolas", "Monaco", "Courier New", monospace;
font-size: 0.875rem;
line-height: 1.5;
white-space: pre-wrap;
}
.error-warnings {
background-color: #332b00;
border: 1px solid #665500;
border-radius: 4px;
padding: 1rem;
color: #ffcc00;
}
.error-warnings h4 {
margin: 0 0 0.5rem 0;
font-size: 0.875rem;
}
.error-warnings ul {
margin: 0;
padding-left: 1.5rem;
}
.error-warnings li {
font-size: 0.813rem;
line-height: 1.5;
}