12345678910111213141516171819202122232425262728293031323334 |
- /**
- Copyright (c) Jupyter Development Team.
- Distributed under the terms of the Modified BSD License.
- */
- /* Add CSS variables to :root */
- :root {
- --jp-icon-vdom: url('./react.svg');
- }
- /* Base styles */
- .jp-RenderedVDOM {
- width: 100%;
- height: 100%;
- padding: 0;
- overflow: auto;
- }
- /* Document styles */
- .jp-MimeDocument .jp-RenderedVDOM {
- padding: 5px;
- }
- /* Output styles */
- .jp-OutputArea .jp-RenderedVDOM {
-
- }
- /* Document icon */
- .jp-VDOMIcon {
- background-image: var(--jp-icon-vdom);
- background-size: 24px;
- background-position: center !important;
- }
|