We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6e13f9 commit 132260dCopy full SHA for 132260d
src/cert-check-server.ts
@@ -32,6 +32,7 @@ function ensureCertificateIsInstalled() {
32
// Start trying to prompt the user to install the cert
33
if (!installingCert) {
34
installingCert = true;
35
+ document.body.className = 'show-content';
36
const iframe = document.createElement('iframe');
37
iframe.src = downloadUrl;
38
document.body.appendChild(iframe);
@@ -71,6 +72,10 @@ export class CertCheckServer {
71
72
font-family: Lato, Arial;
73
}
74
75
+ body:not(.show-content) > * {
76
+ display: none;
77
+ }
78
+
79
h1 {
80
font-size: 36pt;
81
0 commit comments