setting display: initial makes trouble, instead, toggle display: none using classname

This commit is contained in:
taehoon 2019-07-19 12:39:18 -04:00
parent ad504768fe
commit ae70439447
2 changed files with 5 additions and 1 deletions

View File

@ -9,7 +9,7 @@
<link rel="stylesheet" href="/static/font/css/fontello.css">
<link rel="stylesheet" href="/static/font/css/animation.css">
</head>
<body>
<body class="hidden">
<noscript>To use Pleroma, please enable JavaScript.</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->

View File

@ -38,6 +38,10 @@ h4 {
text-align: center;
}
.hidden {
display: none;
}
body {
font-family: sans-serif;
font-family: var(--interfaceFont, sans-serif);