Fix FOUC issues in Firefox

- Prevent Flask Of Unstyled Content (FOUC) in Firefox
"Layout was forced before the page was fully loaded. If stylesheets are not yet loaded this may cause a flash of unstyled content." appears in the console. A quick search yielded that it can be prevented with this.
This commit is contained in:
Xevion
2022-04-10 18:13:37 -05:00
parent 6d5d5c6483
commit d61dd30588

View File

@@ -49,7 +49,9 @@ layout: compress
max-width: 60em !important;
}
{% endif %}
</style>
</style>
<!-- Prevent FireFox from displaying FOUC with fake script tag. -->
<script>0</script>
</head>
<body>
<header>Ryan Walters</header>