Skip to content

Commit

Permalink
Remove prefers-color-scheme from light stylesheet
Browse files Browse the repository at this point in the history
  • Loading branch information
Jazzzny authored Oct 26, 2024
1 parent e381e1f commit d5dbcaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
{% if PREFERRED_STYLE_CSS is not none %}
<link rel="stylesheet" href="{{ static(PREFERRED_STYLE_CSS) }}">
{% else %}
<link rel="stylesheet" href="{{ static(LIGHT_STYLE_CSS) }}" media="(prefers-color-scheme: light)">
<link rel="stylesheet" href="{{ static(LIGHT_STYLE_CSS) }}">
<link rel="stylesheet" href="{{ static(DARK_STYLE_CSS) }}" media="(prefers-color-scheme: dark)">
{% endif %}
{% else %}
Expand Down

0 comments on commit d5dbcaf

Please sign in to comment.