ligo-snippet
Advanced tools
Comparing version 1.4.0 to 1.4.1
@@ -19,3 +19,3 @@ "use strict"; | ||
position: relative; | ||
width: 100%; | ||
min-width: 800px; | ||
display: grid; | ||
@@ -29,3 +29,3 @@ grid-template-rows: 15% 70% 15%; | ||
padding: 20px; | ||
width: 100%; | ||
width: calc(100% - 40px); | ||
} | ||
@@ -71,3 +71,3 @@ .${watermark}-buttons button { | ||
width: 100%; | ||
height: 100%; | ||
height: 350px; | ||
display: grid; | ||
@@ -81,2 +81,3 @@ grid-template-columns: 4% 96%; | ||
height: 100%; | ||
width: 100%; | ||
position: relative; | ||
@@ -88,3 +89,3 @@ } | ||
width: 100%; | ||
height: calc(350px + var(--editor-padding)); | ||
height: calc(100% - var(--editor-padding)); | ||
padding-top: var(--editor-padding); | ||
@@ -117,4 +118,4 @@ line-height: 20px; | ||
border-bottom-right-radius: var(--editor-border-radius); | ||
height: 350px; | ||
width: calc(100% - var(--line-numbers-width)); | ||
height: calc(100% - var(--editor-padding) * 2); | ||
width: calc(100% - var(--editor-padding) * 2); | ||
tab-size: 4; | ||
@@ -121,0 +122,0 @@ letter-spacing: normal; |
{ | ||
"name": "ligo-snippet", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"description": "Ligo code snippet", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -16,3 +16,3 @@ import config from "../config"; | ||
position: relative; | ||
width: 100%; | ||
min-width: 800px; | ||
display: grid; | ||
@@ -26,3 +26,3 @@ grid-template-rows: 15% 70% 15%; | ||
padding: 20px; | ||
width: 100%; | ||
width: calc(100% - 40px); | ||
} | ||
@@ -68,3 +68,3 @@ .${watermark}-buttons button { | ||
width: 100%; | ||
height: 100%; | ||
height: 350px; | ||
display: grid; | ||
@@ -78,2 +78,3 @@ grid-template-columns: 4% 96%; | ||
height: 100%; | ||
width: 100%; | ||
position: relative; | ||
@@ -85,3 +86,3 @@ } | ||
width: 100%; | ||
height: calc(350px + var(--editor-padding)); | ||
height: calc(100% - var(--editor-padding)); | ||
padding-top: var(--editor-padding); | ||
@@ -114,4 +115,4 @@ line-height: 20px; | ||
border-bottom-right-radius: var(--editor-border-radius); | ||
height: 350px; | ||
width: calc(100% - var(--line-numbers-width)); | ||
height: calc(100% - var(--editor-padding) * 2); | ||
width: calc(100% - var(--editor-padding) * 2); | ||
tab-size: 4; | ||
@@ -118,0 +119,0 @@ letter-spacing: normal; |
259869
7005