index.css 645 B

1234567891011121314151617181920212223242526272829303132
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. @import url('~xterm/src/xterm.css');
  6. .jp-TerminalWidget {
  7. min-width: 200px;
  8. min-height: 200px;
  9. padding: 8px;
  10. margin: 0;
  11. }
  12. .jp-TerminalWidget-body {
  13. font-family: var(--jp-code-font-family);
  14. outline: none;
  15. user-select: text;
  16. -webkit-user-select: text;
  17. }
  18. .terminal {
  19. font-family: var(--jp-code-font-family);
  20. }
  21. .terminal .xterm-viewport {
  22. overflow-y: auto;
  23. }