mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
1236043472
Summary: For consistency, we switch back to base font in a few places when using alternate fonts like source-sans or monospace, this makes sure the base font is consistently reset. Test Plan: Review a Document, a Diff, and a Legalpad form Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11891
13 lines
320 B
CSS
13 lines
320 B
CSS
/**
|
|
* @provides phabricator-fatal-config-template-css
|
|
*/
|
|
body {
|
|
overflow-y: scroll;
|
|
background: #f9f9f9;
|
|
margin: 0;
|
|
padding: 0;
|
|
font: 13px/1.231 'Segoe UI', 'Segoe UI Web Regular', 'Segoe UI Symbol',
|
|
'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
text-align: left;
|
|
-webkit-text-size-adjust: none;
|
|
}
|