We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86f8edc commit a66478bCopy full SHA for a66478b
1 file changed
utils/misc/global-state-diff/global-state-diff.html
@@ -150,7 +150,9 @@
150
{display:flex}
151
152
#info
153
- {display:grid;grid-template-columns:max-content 1fr;gap:20px}
+ {display:grid;grid-template-columns:max-content minmax(0, 1fr);gap:20px}
154
+ #item #values > *:nth-child(2)
155
+ {min-width:0;overflow-wrap:break-word;word-break:break-word;}
156
157
#url
158
{font-weight:bold;margin-top:0px;color:blue}
@@ -319,7 +321,7 @@ <h3>
319
321
$('#import .copy').onclick = e=>navigator.clipboard.writeText(src2.value);
320
322
$('#import .paste').onclick = async e=>{var txt=await navigator.clipboard.readText();src2.value=txt};
323
- src2.value = 'https://unpkg.com/es-module-lexer?module';
324
+ //src2.value = 'https://unpkg.com/es-module-lexer?module';
325
326
go2.onclick = function(){
327
0 commit comments