forked from klembot/twinejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chris Klimas
committed
Apr 30, 2022
1 parent
a62edbb
commit 48f68cf
Showing
3 changed files
with
56 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/components/global-error-boundary/global-error-boundary.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.global-error-boundary { | ||
align-items: center; | ||
justify-content: center; | ||
display: grid; | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
background: black; | ||
color: white; | ||
} | ||
|
||
.global-error-boundary .fuuu { | ||
font-size: 200%; | ||
margin-bottom: 0; | ||
} | ||
|
||
.global-error-boundary a { | ||
color: blue; | ||
} | ||
|
||
.global-error-boundary pre { | ||
border: 1px solid white; | ||
max-height: 20em; | ||
overflow: scroll; | ||
padding: 10px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters