index.css 516 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. Copyright (c) Jupyter Development Team.
  3. Distributed under the terms of the Modified BSD License.
  4. */
  5. /* Add CSS variables to :root */
  6. :root {
  7. --jp-icon-vdom: url('./react.svg');
  8. }
  9. /* Base styles */
  10. .jp-RenderedVDOM {
  11. width: 100%;
  12. height: 100%;
  13. padding: 0;
  14. overflow: auto;
  15. }
  16. /* Document styles */
  17. .jp-MimeDocument .jp-RenderedVDOM {
  18. padding: 5px;
  19. }
  20. /* Document icon */
  21. .jp-VDOMIcon {
  22. background-image: var(--jp-icon-vdom);
  23. background-size: 24px;
  24. background-position: center !important;
  25. }