Add 'light-mode' class when not in dark mode

This commit is contained in:
Chris Kankiewicz
2020-01-07 12:49:43 -07:00
parent 99c5b75153
commit c4d4347d21

View File

@@ -9,6 +9,6 @@
<title>{% block title %}{% endblock %} &bull; Directory Lister</title>
<div id="app" class="flex flex-col min-h-screen font-mono {{ config('dark_mode') ? 'dark-mode' : '' }}">
<div id="app" class="flex flex-col min-h-screen font-mono {{ config('dark_mode') ? 'dark-mode' : 'light-mode' }}">
{% block content %}{% endblock %}
</div>