0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-11 13:22:39 +00:00

More alignment

This commit is contained in:
Trevor Buckner
2025-01-05 22:58:48 -05:00
parent 5a9e7850c2
commit c137d40037

View File

@@ -27,7 +27,7 @@ const ErrorBar = (props)=>{
const renderProtip = ()=>( const renderProtip = ()=>(
<div className='protips'> <div className='protips'>
<h4>Protips!</h4> <h4>Protips!</h4>
{hasOpenError && <div>Unmatched opening tag. Close your tags, like this {'</div>'}. Match types!</div>} {hasOpenError && <div>Unmatched opening tag. Close your tags, like this {'</div>'}. Match types!</div>}
{hasCloseError && <div>Unmatched closing tag. Either remove it or check where it was opened.</div>} {hasCloseError && <div>Unmatched closing tag. Either remove it or check where it was opened.</div>}
{hasMatchError && <div>Type mismatch. Closed a tag with a different type.</div>} {hasMatchError && <div>Type mismatch. Closed a tag with a different type.</div>}
</div> </div>
@@ -42,7 +42,7 @@ const ErrorBar = (props)=>{
<i className='fas fa-exclamation-triangle' /> <i className='fas fa-exclamation-triangle' />
<h2> There are HTML errors in your markup</h2> <h2> There are HTML errors in your markup</h2>
<small> <small>
If these aren't fixed your brew will not render properly when you print it to PDF or share it If these aren't fixed your brew will not render properly when you print it to PDF or share it
</small> </small>
{renderErrors()} {renderErrors()}
</div> </div>