This commit is contained in:
Thomas G 2022-08-10 00:09:48 +10:00
parent bfbe15c07c
commit 958153abdd
2 changed files with 16 additions and 0 deletions

View File

@ -41,6 +41,9 @@
@endswitch @endswitch
@else @else
<style> <style>
body {
display: none;
}
html { html {
background: black; background: black;
} }
@ -75,6 +78,11 @@
} }
getDarkMode() getDarkMode()
</script> </script>
<style>
body {
display: block !important;
}
</style>
@endauth @endauth
@yield('extras') @yield('extras')
</head> </head>

View File

@ -38,6 +38,9 @@
@endswitch @endswitch
@else @else
<style> <style>
body {
display: none;
}
html { html {
background: black; background: black;
} }
@ -72,6 +75,11 @@
} }
getDarkMode() getDarkMode()
</script> </script>
<style>
body {
display: block !important;
}
</style>
@endauth @endauth
@yield('extras') @yield('extras')
</head> </head>