Fixed .gitignore not ignoring db/kb symlinks, word-breaking causing

weird spacing in pre, and non-fixed column sizing on new/edit doc page
This commit is contained in:
JJ Kasper
2018-05-29 15:00:29 -05:00
parent b127cb57f5
commit 0316746cae
4 changed files with 11 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
const PaddedRow = ({ children, amount, vCenter }) => {
amount = amount || 20;
const PadItem = () => (
<div className={'column column-' + amount + ' no-mob'} />
<div className={'column column-' + amount + ' nomob'} />
);
let rowProps = {className: 'row'};
if(vCenter) rowProps = {className: 'row v-center'};