12345678910111213141516171819 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- .jp-ImageWidget {
- overflow: auto;
- padding: 0 4px 4px 4px;
- }
- .jp-ImageWidget > div {
- transform-origin: top left;
- }
- .jp-ImageWidget img {
- max-width: 100%;
- max-height: 100%;
- margin: auto;
- }
|