Skip to content

Commit

Permalink
Fixed feedback visible on print
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Oct 14, 2024
1 parent 92089c6 commit e29e124
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion material/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
{% endif %}
{% endblock %}
{% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.9149e943.min.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.0253249f.min.css' | url }}">
{% if config.theme.palette %}
{% set palette = config.theme.palette %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.06af60db.min.css' | url }}">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,9 @@
transform: translateY(0);
}
}

// [print]: Hide feedback
@media print {
display: none;
}
}

0 comments on commit e29e124

Please sign in to comment.