返回 AiToEarn
errorBoundary.module.scss
根目录 / project / aitoearn-electron / src / components / ErrorBoundary / errorBoundary.module.scss
1 .errorBoundary {
2 position: relative;
3 height: 100vh;
4 display: flex;
5 align-items: center;
6 justify-content: center;
7 flex-direction: column;
8 code {
9 font-size: var(--fs-md);
10 margin-bottom: 50px;
11 }
12 &:after {
13 content: "";
14 display: block;
15 position: absolute;
16 top: 0;
17 left: 0;
18 width: 100%;
19 height: 64px;
20 user-select: none;
21 -webkit-app-region: drag;
22 }
23
24 :global {
25 h1 {
26 font-size: var(--fs-xl);
27 margin-bottom: 20px;
28 }
29 }
30 }
30 lines Plain Text