1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-12-22 17:10:10 +00:00

fix crash page

This commit is contained in:
Harvey Tindall 2021-12-31 15:09:33 +00:00
parent 2d3a5c739c
commit f7f3530a33
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2
3 changed files with 33 additions and 35 deletions

View File

@ -60,7 +60,8 @@ else
SOURCEMAP := SOURCEMAP :=
COPYTS := COPYTS :=
TYPECHECK := TYPECHECK :=
UNCSS := npx uncss $(DATA)/crash.html --csspath web/css --output $(DATA)/bundle.css UNCSS := npx tailwindcss -i $(DATA)/web/css/bundle.css -o $(DATA)/bundle.css --content "html/crash.html"
# UNCSS := npx uncss $(DATA)/crash.html --csspath web/css --output $(DATA)/bundle.css
TAILWIND := TAILWIND :=
endif endif

View File

@ -433,6 +433,7 @@ pre {
white-space: -o-pre-wrap; /* Opera 7 */ white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */ word-wrap: break-word; /* Internet Explorer 5.5+ */
background-color: var(--color-content-high) !important; background-color: var(--color-content-high) !important;
overflow-x: scroll;
} }
.circle { .circle {

View File

@ -7,8 +7,6 @@
</head> </head>
<body> <body>
<div class="page-container"> <div class="page-container">
<div class="row">
<div class="col">
<div class="card ~critical sectioned"> <div class="card ~critical sectioned">
<section class="section ~critical"> <section class="section ~critical">
<span class="heading">Crash report for jfa-go</span> <span class="heading">Crash report for jfa-go</span>
@ -42,8 +40,6 @@
</section> </section>
</div> </div>
</div> </div>
</div>
</div>
<script inline src="crash.js"></script> <script inline src="crash.js"></script>
</body> </body>
</html> </html>