HandsontableModal.module.scss 352 B

123456789101112131415161718192021222324
  1. .grw-handsontable :global {
  2. .handsontable {
  3. position: relative;
  4. .handsontableInput {
  5. max-width: 290px !important;
  6. }
  7. td {
  8. word-break: break-all;
  9. }
  10. th {
  11. text-align: inherit;
  12. }
  13. }
  14. }
  15. // expand .hot-table-container (with flexbox)
  16. .grw-modal-expanded :global {
  17. .hot-table-container {
  18. flex: 1;
  19. }
  20. }