1
0
forked from rosa/hakurei

2 Commits

Author SHA1 Message Date
Kat
e84de48e80 TODO: actually write tests lol 2026-03-24 02:57:08 +11:00
Kat
170a88cf7d cmd/pkgserver: add noscript warning to test web UI 2026-03-24 02:57:08 +11:00
2 changed files with 12 additions and 1 deletions

View File

@@ -7,6 +7,13 @@
<title>PkgServer Tests</title> <title>PkgServer Tests</title>
</head> </head>
<body> <body>
<noscript>
I hate JavaScript as much as you, but this page runs tests written in
JavaScript to test the functionality of code written in JavaScript, so it
wouldn't make sense for it to work without JavaScript. <strong>Please turn
JavaScript on!</strong>
</noscript>
<h1>PkgServer Tests</h1> <h1>PkgServer Tests</h1>
<main> <main>

View File

@@ -15,10 +15,14 @@ html {
color: var(--fg); color: var(--fg);
} }
h1, p, summary { h1, p, summary, noscript {
font-family: sans-serif; font-family: sans-serif;
} }
noscript {
font-size: 16pt;
}
.root { .root {
margin: 1rem 0; margin: 1rem 0;
} }