mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-10 13:32:45 +00:00
tweak headers
This commit is contained in:
@@ -311,7 +311,7 @@ const MetadataEditor = createClass({
|
|||||||
|
|
||||||
render : function(){
|
render : function(){
|
||||||
return <div className='metadataEditor'>
|
return <div className='metadataEditor'>
|
||||||
<h1 className='sectionHead'>Properties Editor</h1>
|
<h1>Properties Editor</h1>
|
||||||
|
|
||||||
<div className='field title'>
|
<div className='field title'>
|
||||||
<label>title</label>
|
<label>title</label>
|
||||||
@@ -359,9 +359,7 @@ const MetadataEditor = createClass({
|
|||||||
|
|
||||||
{this.renderRenderOptions()}
|
{this.renderRenderOptions()}
|
||||||
|
|
||||||
<hr/>
|
<h2>Authors</h2>
|
||||||
|
|
||||||
<h1 className='sectionHead'>Authors</h1>
|
|
||||||
|
|
||||||
{this.renderAuthors()}
|
{this.renderAuthors()}
|
||||||
|
|
||||||
@@ -372,9 +370,7 @@ const MetadataEditor = createClass({
|
|||||||
notes={['Invited author usernames are case sensitive.', 'After adding an invited author, send them the edit link. There, they can choose to accept or decline the invitation.']}
|
notes={['Invited author usernames are case sensitive.', 'After adding an invited author, send them the edit link. There, they can choose to accept or decline the invitation.']}
|
||||||
onChange={(e)=>this.handleFieldChange('invitedAuthors', e)}/>
|
onChange={(e)=>this.handleFieldChange('invitedAuthors', e)}/>
|
||||||
|
|
||||||
<hr/>
|
<h2>Privacy</h2>
|
||||||
|
|
||||||
<h1 className='sectionHead'>Privacy</h1>
|
|
||||||
|
|
||||||
<div className='field publish'>
|
<div className='field publish'>
|
||||||
<label>publish</label>
|
<label>publish</label>
|
||||||
|
|||||||
@@ -12,11 +12,17 @@
|
|||||||
background-color : #999999;
|
background-color : #999999;
|
||||||
font-size : 13px;
|
font-size : 13px;
|
||||||
|
|
||||||
.sectionHead {
|
h1 {
|
||||||
|
margin: 0 0 40px;
|
||||||
|
font-weight: bold;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
margin : 20px 0;
|
margin : 20px 0;
|
||||||
font-weight : 1000;
|
font-weight : bold;
|
||||||
|
border-bottom: 2px solid gray;
|
||||||
&:first-of-type { margin-top : 0; }
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
& > div { margin-bottom : 10px; }
|
& > div { margin-bottom : 10px; }
|
||||||
|
|||||||
Reference in New Issue
Block a user