1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-16 02:05:58 +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
### 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
- 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'>
<div>The Homebrewery</div>
</Nav.item>
<Nav.item>v2.0.2</Nav.item>
<Nav.item>v2.0.3</Nav.item>
</Nav.section>
{this.props.children}
</Nav.base>

View File

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

View File

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