diff options
author | Phil Hughes <me@iamphill.com> | 2017-03-17 17:00:55 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-03-23 10:52:55 +0000 |
commit | 33f26de56bca2c5c2d6a4da29ed2217b8abf1710 (patch) | |
tree | 40dbe8be2782c942aa5e83143886051e9052543b /vendor | |
parent | f9ced97a97f5bebec57545fbf611952026bf0d5d (diff) | |
download | gitlab-ce-33f26de56bca2c5c2d6a4da29ed2217b8abf1710.tar.gz |
Loads raw JSON & displays in the component
[ci skip]
Diffstat (limited to 'vendor')
-rw-r--r-- | vendor/assets/stylesheets/notebooklab.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/vendor/assets/stylesheets/notebooklab.css b/vendor/assets/stylesheets/notebooklab.css new file mode 100644 index 00000000000..0caf729a17f --- /dev/null +++ b/vendor/assets/stylesheets/notebooklab.css @@ -0,0 +1,27 @@ +.cell, +.input, +.output { + display: flex; + width: 100%; + margin-bottom: 10px; +} + +.cell:not(.text-cell) { + flex-direction: column; +} + +.prompt { + padding: 0 10px; + min-width: 7em; + font-family: monospace; +} + +.cell pre { + margin: 0; + width: 100%; +} + +.markdown .katex { + display: block; + text-align: center; +} |