mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-17 08:31:23 -05:00
Adjust padding so that the class can be reused for other pages
This commit is contained in:
parent
dffcbebc37
commit
cccc3abd57
2 changed files with 8 additions and 4 deletions
|
@ -56,11 +56,11 @@ const StudioComments = ({
|
|||
|
||||
return (
|
||||
<div>
|
||||
<div className="studio-comments-header-container">
|
||||
<div className="studio-header-container">
|
||||
<h2><FormattedMessage id="studio.commentsHeader" /></h2>
|
||||
{canEditCommentsAllowed && <StudioCommentsAllowed />}
|
||||
</div>
|
||||
<div>
|
||||
<div className="studio-compose-container">
|
||||
{shouldShowCommentComposer && commentsAllowed &&
|
||||
<ComposeComment
|
||||
postURI={postURI}
|
||||
|
|
|
@ -267,13 +267,17 @@ $radius: 8px;
|
|||
}
|
||||
}
|
||||
|
||||
.studio-comments-header-container {
|
||||
.studio-header-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding-top: 30px;
|
||||
padding-bottom: 50px;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
.studio-compose-container {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.studio-empty {
|
||||
|
|
Loading…
Reference in a new issue