aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/App.css5
-rw-r--r--src/BBSThread.js6
2 files changed, 8 insertions, 3 deletions
diff --git a/src/App.css b/src/App.css
index d68f434..2b19b24 100644
--- a/src/App.css
+++ b/src/App.css
@@ -2,4 +2,9 @@
word-break: break-word;
overflow-wrap: anywhere;
text-overflow: ellipsis;
+}
+
+.inlineSubHeader {
+ display: inline !important;
+ margin-left: 0.25em !important;
} \ No newline at end of file
diff --git a/src/BBSThread.js b/src/BBSThread.js
index 321598e..905628f 100644
--- a/src/BBSThread.js
+++ b/src/BBSThread.js
@@ -63,8 +63,8 @@ class BBSThread extends Component {
<div>
<Header as="h2">{subject}
<Header.Subheader>
- <Icon name="clock" /> <Moment fromNow unix locale="es" date={timestamp} />
- &nbsp;<Icon name="reply" /> {total_replies}
+ Creado <Moment fromNow unix locale="es" date={timestamp} /><br />
+ {total_replies} respuestas
</Header.Subheader>
</Header>
@@ -73,7 +73,7 @@ class BBSThread extends Component {
(<Segment.Group>
<Header as="h5" attached>
{post.name}
- <Header.Subheader>
+ <Header.Subheader className="inlineSubHeader">
<Moment fromNow unix locale="es" date={post.timestamp} />
</Header.Subheader>
</Header>