Skip to content

Commit

Permalink
fix MaterialIcons font static location
Browse files Browse the repository at this point in the history
  • Loading branch information
metaforx committed Feb 22, 2022
1 parent cacca67 commit f3b3e2e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions django_slick_admin/templates/admin/base_site.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
font-family: "Material Icons";
font-style: normal;
font-weight: normal;
src: local("Material Icons"), local("MaterialIcons-Regular"), url({% static 'django_slick_admin/fonts/MaterialIcons-Regular.woff2' %}) format("woff2"),
url({% static 'django_slick_admin/fonts/MaterialIcons-Regular.woff' %}) format("woff"),
url({% static 'django_slick_admin/fonts/MaterialIcons-Regular.ttf' %}) format("truetype");
src: local("Material Icons"), local("MaterialIcons-Regular"), url({% static 'django_slick_admin/asset/fonts/MaterialIcons-Regular.woff2' %}) format("woff2"),
url({% static 'django_slick_admin/asset/fonts/MaterialIcons-Regular.woff' %}) format("woff"),
url({% static 'django_slick_admin/asset/fonts/MaterialIcons-Regular.ttf' %}) format("truetype");
}
</style>
{% endblock %}
Expand Down

0 comments on commit f3b3e2e

Please sign in to comment.