Fix icon rendering on systems without icon fonts
Replace star character
This commit is contained in:
parent
2a987334be
commit
e3bbb6407d
|
@ -3,6 +3,11 @@
|
||||||
src: url("../fonts/Wenceslas.ttf");
|
src: url("../fonts/Wenceslas.ttf");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Noto Sans Symbols";
|
||||||
|
src: url("../fonts/NotoSymbolsSmall.woff2") format('woff2');
|
||||||
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
background-color: #21192c;
|
background-color: #21192c;
|
||||||
scrollbar-color: #1a1423 #21192c;
|
scrollbar-color: #1a1423 #21192c;
|
||||||
|
@ -28,7 +33,8 @@ a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
a::before {
|
a::before {
|
||||||
content: '⛤';
|
content: '⛥';
|
||||||
|
font-family: "Noto Sans Symbols";
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-right: 0.5em;
|
margin-right: 0.5em;
|
||||||
}
|
}
|
Binary file not shown.
Loading…
Reference in New Issue