mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 11:04:05 +08:00
04c56b3fb5
* feat: added preload config * feat: support changing locale * fix: name case * fix: removed unused code * feat: added translations for default reactions * fix: do not translate icon * fix: shorter i18n keys
36 lines
898 B
CSS
36 lines
898 B
CSS
@font-face {
|
|
font-family: "Material Icons";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local("Material Icons"), local("MaterialIcons-Regular"),
|
|
url("material-design-icons/iconfont/MaterialIcons-Regular.woff2")
|
|
format("woff2"),
|
|
url("material-design-icons/iconfont/MaterialIcons-Regular.woff")
|
|
format("woff");
|
|
}
|
|
|
|
.icon {
|
|
font-family: "Material Icons";
|
|
speak: none;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-variant: normal;
|
|
text-transform: none;
|
|
line-height: 1;
|
|
overflow: hidden;
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
letter-spacing: 0;
|
|
|
|
/* Enable Ligatures */
|
|
font-feature-settings: "liga";
|
|
font-variant-ligatures: "discretionary-ligatures";
|
|
|
|
/* Support for Safari and Chrome. */
|
|
text-rendering: optimizeLegibility;
|
|
|
|
/* Better Font Rendering */
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|