add .section class on channel comments

This commit is contained in:
Sean Yesmunt 2019-11-14 15:20:49 -05:00
parent e02f021b73
commit 46a85bec6b
2 changed files with 9 additions and 5 deletions

View file

@ -874,4 +874,4 @@
"Creating a lbry.tv account will allow you to earn rewards, receive content and security updates, and optionally backup your data.": "Creating a lbry.tv account will allow you to earn rewards, receive content and security updates, and optionally backup your data.", "Creating a lbry.tv account will allow you to earn rewards, receive content and security updates, and optionally backup your data.": "Creating a lbry.tv account will allow you to earn rewards, receive content and security updates, and optionally backup your data.",
"Paid content cannot be embedded": "Paid content cannot be embedded", "Paid content cannot be embedded": "Paid content cannot be embedded",
"This content cannot be embedded": "This content cannot be embedded" "This content cannot be embedded": "This content cannot be embedded"
} }

View file

@ -10,10 +10,14 @@ type Props = {
function ChannelDiscussion(props: Props) { function ChannelDiscussion(props: Props) {
const uri = props.uri; const uri = props.uri;
return ( return (
<section className="card--section"> <div className="card--section">
<CommentCreate uri={uri} /> <section className="section">
<CommentsList uri={uri} /> <CommentCreate uri={uri} />
</section> </section>
<section className="section">
<CommentsList uri={uri} />
</section>
</div>
); );
} }