Skip to content

Commit

Permalink
Fix variable spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbvz committed Nov 9, 2021
1 parent de17f44 commit 4849b6e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ export class BackLayerWebView<T extends ICommonCellInfo> extends Disposable {
'notebook-output-width': `calc(100% - ${this.options.leftMargin + this.options.rightMargin + this.options.runGutter}px)`,
'notebook-output-node-padding': `${this.options.outputNodePadding}px`,
'notebook-run-gutter': `${this.options.runGutter}px`,
'notebook-preivew-node-padding': `${this.options.previewNodePadding}px`,
'notebook-preview-node-padding': `${this.options.previewNodePadding}px`,
'notebook-markdown-left-margin': `${this.options.markdownLeftMargin}px`,
'notebook-output-node-left-padding': `${this.options.outputNodeLeftPadding}px`,
'notebook-markdown-min-height': `${this.options.previewNodePadding * 2}px`,
Expand Down Expand Up @@ -279,10 +279,10 @@ export class BackLayerWebView<T extends ICommonCellInfo> extends Disposable {
/* markdown */
#container > div.preview {
width: 100%;
padding-right: var(--notebook-preivew-node-padding);
padding-right: var(--notebook-preview-node-padding);
padding-left: var(--notebook-markdown-left-margin);
padding-top: var(--notebook-preivew-node-padding);
padding-bottom: var(--notebook-preivew-node-padding);
padding-top: var(--notebook-preview-node-padding);
padding-bottom: var(--notebook-preview-node-padding);
box-sizing: border-box;
white-space: nowrap;
Expand Down

0 comments on commit 4849b6e

Please sign in to comment.