-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
40 lines (35 loc) · 864 Bytes
/
index.css
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
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}
.error-boundary-alert-container {
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
}
.error-boundary-alert {
background-color: rgb(254, 215, 215);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
max-width: 600px;
height: 200px;
padding: 2rem;
box-sizing: border-box;
}
.error-boundary-alert h3 {
margin-top: 0;
margin-bottom: 1rem;
}
.error-boundary-alert p {
margin: 0;
}