|
@@ -130,8 +130,9 @@ class GridEditorUtil {
|
|
|
|
|
|
|
|
convertRatiosAndSizeToHTML(ratioNumbers, responsiveSize) {
|
|
convertRatiosAndSizeToHTML(ratioNumbers, responsiveSize) {
|
|
|
const cols = ratioNumbers.map((ratioNumber, i) => {
|
|
const cols = ratioNumbers.map((ratioNumber, i) => {
|
|
|
|
|
+ const spaceTab = ' ';
|
|
|
const className = `col${responsiveSize !== 'xs' ? `-${responsiveSize}` : ''}-${ratioNumber} bsGrid${i + 1}`;
|
|
const className = `col${responsiveSize !== 'xs' ? `-${responsiveSize}` : ''}-${ratioNumber} bsGrid${i + 1}`;
|
|
|
- return `<div class="${className}"></div>`;
|
|
|
|
|
|
|
+ return `${spaceTab}${spaceTab}<div class="${className}"></div>`;
|
|
|
});
|
|
});
|
|
|
return cols.join('\n');
|
|
return cols.join('\n');
|
|
|
}
|
|
}
|