1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-28 07:31:28 +00:00

Wrapping up the fix

This commit is contained in:
Scott Tolksdorf
2016-05-24 21:35:03 -04:00
parent 53529d14eb
commit 2ed9395e29
4 changed files with 175 additions and 172 deletions

View File

@@ -1,5 +1,8 @@
# changelog # changelog
### Tuesday, 24/05/2016 - v2.0.3
- Fixed extra wide monster stat blocks sometimes only being one column
### Thursday, 19/05/2016 - v2.0.2 ### Thursday, 19/05/2016 - v2.0.2
- No longer server-side pre-render brews, just incase the user entered invalid HTML, it might crahsh the server - No longer server-side pre-render brews, just incase the user entered invalid HTML, it might crahsh the server

View File

@@ -11,7 +11,7 @@ var Navbar = React.createClass({
<Nav.item href='/homebrew' className='homebrewLogo'> <Nav.item href='/homebrew' className='homebrewLogo'>
<div>The Homebrewery</div> <div>The Homebrewery</div>
</Nav.item> </Nav.item>
<Nav.item>v2.0.2</Nav.item> <Nav.item>v2.0.3</Nav.item>
</Nav.section> </Nav.section>
{this.props.children} {this.props.children}
</Nav.base> </Nav.base>

View File

@@ -1,7 +1,7 @@
{ {
"name": "naturalcrit", "name": "naturalcrit",
"description": "D&D Tools for the discerning DM", "description": "D&D Tools for the discerning DM",
"version": "2.0.2", "version": "2.0.3",
"scripts": { "scripts": {
"postinstall": "gulp prod", "postinstall": "gulp prod",
"start": "node server.js" "start": "node server.js"

View File

@@ -412,11 +412,11 @@ table {
column-count: 2; column-count: 2;
column-fill: auto; column-fill: auto;
column-gap: 1cm; column-gap: 1cm;
column-width: 8cm; column-width: 7.68cm;
-webkit-column-count: 2; -webkit-column-count: 2;
-moz-column-count: 2; -moz-column-count: 2;
-webkit-column-width: 8cm; -webkit-column-width: 7.68cm;
-moz-column-width: 8cm; -moz-column-width: 7.68cm;
-webkit-column-gap: 1cm; -webkit-column-gap: 1cm;
-moz-column-gap: 1cm; -moz-column-gap: 1cm;
} }