0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-30 15:22:41 +00:00

Update lock message

This commit is contained in:
G.Ambatte
2024-05-10 07:45:04 +12:00
parent 3a054f1ae0
commit 10a7f34abb
2 changed files with 16 additions and 2 deletions

View File

@@ -19,9 +19,12 @@ const LockNotification = createClass({
<h1>BREW LOCKED</h1>
<p>This brew been locked by the Administrators. It will not be accessible by any method other than the Editor until the lock is removed.</p>
<hr />
<p><strong>LOCK MESSAGE:</strong></p>
<h3>LOCK REASON</h3>
<p>{this.props.message || 'Unable to retrieve Lock Message'}</p>
<button onClick={()=>{this.props.disableLock();}}>CONTINUE TO EDITOR</button>
<hr />
<p>Once you have resolved this issue, click REQUEST LOCK REMOVAL to notify the Administrators for review.</p>
<p>Click CONTINUE TO EDITOR to temporarily hide this notification; it will reappear the next time the page is reloaded.</p>
<button onClick={this.props.disableLock}>CONTINUE TO EDITOR</button>
<button onClick={this.removeLock}>REQUEST LOCK REMOVAL</button>
</div>;
}

View File

@@ -15,4 +15,15 @@
background-color: #777;
}
}
h1, h3 {
font-family: 'Open Sans', sans-serif;
font-weight: 800;
}
h1 {
font-size: 24px;
}
h3 {
font-size: 18px;
}
}