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:
@@ -103,10 +103,10 @@ export default class MngDoc extends Component {
|
||||
return(
|
||||
<Page>
|
||||
<div className='row fill' style={rowStyle}>
|
||||
<div className='column'>
|
||||
<div className='column column-50'>
|
||||
<Markdown className='fill Markdown' source={md} />
|
||||
</div>
|
||||
<div className='column'>
|
||||
<div className='column column-50'>
|
||||
<div className='row'>
|
||||
<div className='column column-60'>
|
||||
<input type='text' maxLength={250}
|
||||
|
||||
@@ -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'};
|
||||
|
||||
Reference in New Issue
Block a user