_flex-expand.scss 426 B

1234567891011121314151617
  1. // ref: https://discuss.codemirror.net/t/how-to-fit-the-codemirror-6-widget-into-a-flex-div/4207/4
  2. %flex-expand-horiz {
  3. display: flex;
  4. flex-direction: row;
  5. flex-grow: 1;
  6. height: 100%;
  7. overflow-y: auto;
  8. }
  9. // ref: https://discuss.codemirror.net/t/how-to-fit-the-codemirror-6-widget-into-a-flex-div/4207/4
  10. %flex-expand-vert {
  11. display: flex;
  12. flex: 1;
  13. flex-direction: column;
  14. height: 100%;
  15. overflow-y: auto;
  16. }