summaryrefslogtreecommitdiffstats
path: root/ui/src/components/post.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-10-15 12:21:27 -0700
committerDessalines <tyhou13@gmx.com>2019-10-15 12:21:27 -0700
commitc0821fcaa501ef717e9fd58dac8a1203b9553bfa (patch)
tree0e06de5cfcb14b730ec154caeaa7cab3c07fa051 /ui/src/components/post.tsx
parent37d4f84787e6325742e9486ee87647172dcced83 (diff)
Adding 8 different themes.
- Fixes #276
Diffstat (limited to 'ui/src/components/post.tsx')
-rw-r--r--ui/src/components/post.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/post.tsx b/ui/src/components/post.tsx
index 43489327..9e20aa29 100644
--- a/ui/src/components/post.tsx
+++ b/ui/src/components/post.tsx
@@ -74,7 +74,7 @@ export class Post extends Component<any, PostState> {
if (this.state.scrolled_comment_id && !this.state.scrolled && lastState.comments.length > 0) {
var elmnt = document.getElementById(`comment-${this.state.scrolled_comment_id}`);
elmnt.scrollIntoView();
- elmnt.classList.add("mark-two");
+ elmnt.classList.add("mark");
this.state.scrolled = true;
this.markScrolledAsRead(this.state.scrolled_comment_id);
}