3px → 2px border on pinned comments area

This commit is contained in:
igoradamenko
2018-02-24 19:19:51 +02:00
parent 94dbca0006
commit 1fcf98fc13
2 changed files with 10 additions and 10 deletions
+9 -9
View File
@@ -1,10 +1,3 @@
optimizations:
- rewrite fetcher if we need it (do we really need axios?)
- remove dev-tools if we have some
- remove babel-polyfill if we don't need it
major features:
- improve design
@@ -16,17 +9,24 @@ major features:
- remove grey avatars 'cause we have default img
- 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)
- 48px avatar → 24px
- 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
optimizations:
- rewrite fetcher if we need it (do we really need axios?)
- remove dev-tools if we have some
- remove babel-polyfill if we don't need it
minor features:
- add manual sort
- `GET /api/v1/find?site=site-id&url=post-url&sort=fld&format=tree`
- add manual format
- `GET /api/v1/find?site=site-id&url=post-url&sort=fld&format=tree`
- add comments counter
- `GET /api/v1/count?site=site-id&url=post-url`
@@ -3,6 +3,6 @@
.root__pinned-comments {
margin-bottom: $offset * 2;
padding: ($offset / 3) ($offset / 2);
border: 3px solid #0aa;
border: 2px solid #0aa;
border-radius: 4px;
}