diff --git a/client/homebrew/editor/snippets/snippets.js b/client/homebrew/editor/snippets/snippets.js
index 5fa6947..171ec39 100644
--- a/client/homebrew/editor/snippets/snippets.js
+++ b/client/homebrew/editor/snippets/snippets.js
@@ -26,6 +26,11 @@ module.exports = [
icon : 'fa-arrows-v',
gen : "
\n\n"
},
+ {
+ name : "Wide Block",
+ icon : 'fa-arrows-h',
+ gen : "\nEverything in here will be extra wide. Tables, text, everything! Beware though, CSS columns can behave a bit weird sometimes.\n
\n"
+ },
{
name : "Image",
icon : 'fa-image',
diff --git a/client/homebrew/navbar/navbar.jsx b/client/homebrew/navbar/navbar.jsx
index e952fd2..17e0460 100644
--- a/client/homebrew/navbar/navbar.jsx
+++ b/client/homebrew/navbar/navbar.jsx
@@ -11,7 +11,7 @@ var Navbar = React.createClass({
The Homebrewery
- v2.1.0
+ v2.1.1
{this.props.children}
diff --git a/client/homebrew/phbStyle/phb.style.less b/client/homebrew/phbStyle/phb.style.less
index 2d6a7e1..f53286d 100644
--- a/client/homebrew/phbStyle/phb.style.less
+++ b/client/homebrew/phbStyle/phb.style.less
@@ -401,4 +401,14 @@
blockquote{
box-shadow : none;
}
+}
+
+
+//*****************************
+// * WIDE
+// *****************************/
+.phb .wide{
+ column-span : all;
+ -webkit-column-span : all;
+ -moz-column-span : all;
}
\ No newline at end of file
diff --git a/package.json b/package.json
index b3a662a..1ff3da9 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "naturalcrit",
"description": "D&D Tools for the discerning DM",
- "version": "2.1.0",
+ "version": "2.1.1",
"scripts": {
"postinstall": "gulp prod",
"start": "node server.js"
diff --git a/phb.standalone.css b/phb.standalone.css
index eeadfc2..e0e4c78 100644
--- a/phb.standalone.css
+++ b/phb.standalone.css
@@ -561,3 +561,8 @@ table {
.phb.print blockquote {
box-shadow: none;
}
+.phb .wide {
+ column-span: all;
+ -webkit-column-span: all;
+ -moz-column-span: all;
+}