diff --git a/packages/concordia-app/src/components/PostList/PostListRow/index.jsx b/packages/concordia-app/src/components/PostList/PostListRow/index.jsx
index c1f636b..37026fa 100644
--- a/packages/concordia-app/src/components/PostList/PostListRow/index.jsx
+++ b/packages/concordia-app/src/components/PostList/PostListRow/index.jsx
@@ -2,7 +2,8 @@ import React, {
memo, useEffect, useMemo, useState, useCallback,
} from 'react';
import {
- Dimmer, Feed, Placeholder, Ref,
+ Button,
+ Dimmer, Feed, Placeholder, Ref,
} from 'semantic-ui-react';
import PropTypes from 'prop-types';
import { useTranslation } from 'react-i18next';
@@ -138,6 +139,11 @@ const PostListRow = (props) => {
? postContent
: }
+
+
+ 0
+
+
), [focusRef, loading, postAuthor, postAuthorAddress, postAuthorMeta, postContent, postId, postIndex, t, timeAgo,
diff --git a/packages/concordia-app/src/components/PostList/PostListRow/styles.css b/packages/concordia-app/src/components/PostList/PostListRow/styles.css
index f8facec..9303195 100644
--- a/packages/concordia-app/src/components/PostList/PostListRow/styles.css
+++ b/packages/concordia-app/src/components/PostList/PostListRow/styles.css
@@ -1,5 +1,5 @@
.post-list-row {
- padding: 1rem 0.1rem 1rem 0.6rem !important;
+ padding: 1.2rem 0.1rem 1.2rem 0.6rem !important;
}
.post-profile-picture {
@@ -14,6 +14,10 @@
font-size: 1rem !important;
}
+.post-content > div.extra {
+ padding-right: 1rem !important;
+}
+
.post-content .placeholder {
margin: 0.5rem 0 0;
font-size: 2rem !important;
@@ -25,6 +29,21 @@
.post-summary-meta-index {
float: right;
+ width: 3rem;
+ text-align: right;
font-size: 0.75rem !important;
opacity: 0.4;
}
+
+.post-voting {
+ float: left;
+ margin-top: 1.2rem;
+}
+
+.post-voting > button{
+ margin: 0 !important;
+}
+
+.post-voting > span{
+ vertical-align: middle;
+}
diff --git a/packages/concordia-app/src/views/Topic/TopicView/index.jsx b/packages/concordia-app/src/views/Topic/TopicView/index.jsx
index 221c796..5f61fa1 100644
--- a/packages/concordia-app/src/views/Topic/TopicView/index.jsx
+++ b/packages/concordia-app/src/views/Topic/TopicView/index.jsx
@@ -119,7 +119,7 @@ const TopicView = (props) => {
};
return (
-
+