Procházet zdrojové kódy

Stop using local fonts for material icons (#759)

While local fonts can reduce the number of resource downloads, there
have been repeated problems with icons not showing due to a conflict
with other locally installed fonts.

Fixes #714.
Danilo Bargen před 6 roky
rodič
revize
227200e25e
1 změnil soubory, kde provedl 1 přidání a 3 odebrání
  1. 1 3
      public/fonts/material.css

+ 1 - 3
public/fonts/material.css

@@ -1,8 +1,6 @@
 @font-face {
     font-family: 'Material Icons';
-    src: local('Material Icons'),
-         local('MaterialIcons-Regular'),
-         url('MaterialIcons-Regular.woff2?v=1') format('woff2'),
+    src: url('MaterialIcons-Regular.woff2?v=1') format('woff2'),
          url('MaterialIcons-Regular.woff?v=1') format('woff');
     font-style: normal;
     font-weight: 400;