Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion dist/assets/stylesheets/classic/main.70d17ad7.min.css

This file was deleted.

1 change: 1 addition & 0 deletions dist/assets/stylesheets/classic/main.e1e97660.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/assets/stylesheets/modern/main.dfcb43b2.min.css

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/assets/stylesheets/modern/main.f1b6466b.min.css

This file was deleted.

4 changes: 2 additions & 2 deletions dist/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
{% endblock %}
{% block styles %}
{% if config.theme.variant == "modern" %}
{% set href = 'assets/stylesheets/modern/main.f1b6466b.min.css' | url %}
{% set href = 'assets/stylesheets/modern/main.dfcb43b2.min.css' | url %}
{% else %}
{% set href = 'assets/stylesheets/classic/main.70d17ad7.min.css' | url %}
{% set href = 'assets/stylesheets/classic/main.e1e97660.min.css' | url %}
{% endif %}
<link rel="stylesheet" href="{{ href }}">
{% if config.theme.palette %}
Expand Down
6 changes: 6 additions & 0 deletions src/assets/stylesheets/classic/main/components/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,12 @@
max-height: px2rem(16px);
vertical-align: -25%;
fill: currentcolor;

// Override for Lucide icons, which use strokes
&.lucide {
fill: transparent;
stroke: currentcolor;
}
}
}
}
6 changes: 6 additions & 0 deletions src/assets/stylesheets/modern/main/components/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,12 @@
max-height: px2rem(16px);
vertical-align: -25%;
fill: currentcolor;

// Override for Lucide icons, which use strokes
&.lucide {
fill: transparent;
stroke: currentcolor;
}
}
}
}