mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
4c7208cfa9
Summary: Ref T8755. Hunting down some display issues with the fonts on certain computers (Ubuntu, Windows, Chrome Mobile). Hopefully having the full font fallback tree will resolve the issues. Test Plan: Review Phriction on my Mac, no distinguishable difference. Will test Ubuntu after it lands. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8755 Differential Revision: https://secure.phabricator.com/D13552
22 lines
757 B
CSS
22 lines
757 B
CSS
/**
|
|
* @provides font-roboto-slab
|
|
* @requires phui-fontkit-css
|
|
*/
|
|
|
|
@font-face {
|
|
font-family: 'Roboto Slab';
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
src: url(/rsrc/externals/font/robotoslab/robotoslab-regular.eot);
|
|
src: url(/rsrc/externals/font/robotoslab/robotoslab-regular.eot?#iefix)
|
|
format('embedded-opentype'),
|
|
url(/rsrc/externals/font/robotoslab/robotoslab-regular.woff2)
|
|
format('woff2'),
|
|
url(/rsrc/externals/font/robotoslab/robotoslab-regular.woff)
|
|
format('woff'),
|
|
url(/rsrc/externals/font/robotoslab/robotoslab-regular.ttf)
|
|
format('truetype'),
|
|
url(/rsrc/externals/font/robotoslab/robotoslab-regular.svg#roboto_slabregular)
|
|
format('svg');
|
|
|
|
}
|