feat: More optimizations
This commit is contained in:
@ -25,6 +25,3 @@
|
|||||||
@use "qrcode";
|
@use "qrcode";
|
||||||
@use "statements";
|
@use "statements";
|
||||||
@use "tags";
|
@use "tags";
|
||||||
|
|
||||||
@import url("syntax-theme-dark.css") (prefers-color-scheme: dark);
|
|
||||||
@import url("syntax-theme-light.css") (prefers-color-scheme: light);
|
|
||||||
|
@ -16,10 +16,12 @@
|
|||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
</title>
|
</title>
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ get_url(path='style.css') }}" />
|
<link rel="stylesheet" type="text/css" href="{{ get_url(path='style.css') }}" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="/syntax-theme-dark.css" media="(prefers-color-scheme: dark)" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="/syntax-theme-light.css" media="(prefers-color-scheme: light)" />
|
||||||
{% if config.extra.stylesheets %}
|
{% if config.extra.stylesheets %}
|
||||||
{% for stylesheet in config.extra.stylesheets %}
|
{% for stylesheet in config.extra.stylesheets %}
|
||||||
<link rel="stylesheet" href="{{ get_url(path=stylesheet) }}" />
|
<link rel="stylesheet" type="text/css" href="{{ get_url(path=stylesheet) }}" />
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user