|
|
@@ -16,6 +16,8 @@ import ExpandOrContractButton from '../ExpandOrContractButton';
|
|
|
|
|
|
import MarkdownTableDataImportForm from './MarkdownTableDataImportForm';
|
|
|
|
|
|
+import styles from './HandsontableModal.module.scss';
|
|
|
+
|
|
|
const DEFAULT_HOT_HEIGHT = 300;
|
|
|
const MARKDOWNTABLE_TO_HANDSONTABLE_ALIGNMENT_SYMBOL_MAPPING = {
|
|
|
r: 'htRight',
|
|
|
@@ -439,7 +441,8 @@ export default class HandsontableModal extends React.PureComponent {
|
|
|
backdrop="static"
|
|
|
keyboard={false}
|
|
|
size="lg"
|
|
|
- className={`handsontable-modal ${this.state.isWindowExpanded && 'grw-modal-expanded'}`}
|
|
|
+ // eslint-disable-next-line max-len
|
|
|
+ className={`${styles['grw-handsontable']} ${styles['handsontable-modal']} handsontable-modal ${this.state.isWindowExpanded && `grw-modal-expanded ${styles['grw-modal-expanded']}`}`}
|
|
|
>
|
|
|
<ModalHeader tag="h4" toggle={this.cancel} close={buttons} className="bg-primary text-light">
|
|
|
Edit Table
|