Skip to content

Commit 8db27d9

Browse files
committed
assets: error[style]
1 parent 2eae468 commit 8db27d9

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

src/assets/error/style.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
body {
2+
box-sizing: border-box;
3+
min-height: 100vh;
4+
padding: 20px;
5+
display: grid;
6+
margin: 0;
7+
8+
background-color: #FFFFFF;
9+
color: #333333;
10+
}
11+
12+
pre {
13+
background: rgba(255, 255, 255, 0.8);
14+
outline: 6px double indianred;
15+
font-size: 14px;
16+
padding: 20px;
17+
min-width: 0;
18+
margin: 0;
19+
}
20+
21+
pre code {
22+
overflow: auto;
23+
display: block;
24+
}
25+
26+
@media (max-width: 500px) {
27+
pre {
28+
padding: 10px;
29+
}
30+
}

0 commit comments

Comments
 (0)