use sans instead of serif

This commit is contained in:
igoradamenko
2018-02-24 21:30:24 +02:00
parent 43ccb6106d
commit 19ee942ea0
4 changed files with 5 additions and 2 deletions
-1
View File
@@ -10,7 +10,6 @@ major features:
- add time format 'X hours ago'
- use static buttons 'reply', 'pin', etc instead of dynamic
- maybe we should change layout: vote buttons | avatar | info; info: (top: name, points, time), (center: text), (bottom: controls)
- fix serif font in pinned comments and in auth panel
- edit comment
- `PUT /api/v1/comment/{id}?site=site-id&url=post-url`
- add description of web part to readme
+2
View File
@@ -1,5 +1,7 @@
export { default } from './root';
require('./root.scss');
require('./__auth-panel/root__auth-panel.scss');
require('./__input/root__input.scss');
require('./__pinned-comment/root__pinned-comment.scss');
+3
View File
@@ -0,0 +1,3 @@
.root {
font-family: 'PT Sans', Helvetica, Arial, sans-serif;
}
-1
View File
@@ -2,5 +2,4 @@
.thread {
margin-bottom: $offset;
font-family: 'PT Sans', Helvetica, Arial, sans-serif;
}