forked from AkkomaGang/akkoma-fe
setting display: initial makes trouble, instead, toggle display: none using classname
This commit is contained in:
parent
ad504768fe
commit
ae70439447
2 changed files with 5 additions and 1 deletions
|
@ -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 -->
|
||||
|
|
|
@ -38,6 +38,10 @@ h4 {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: sans-serif;
|
||||
font-family: var(--interfaceFont, sans-serif);
|
||||
|
|
Loading…
Reference in a new issue