Skip to content

Commit 9d87baf

Browse files
committed
revert padding
1 parent 02210aa commit 9d87baf

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

js/micron-parser.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
class MicronParser {
12-
12+
alert('test');
1313
constructor(darkTheme = true, enableForceMonospace = true) {
1414
this.darkTheme = darkTheme;
1515
this.enableForceMonospace = enableForceMonospace;
@@ -368,7 +368,6 @@ class MicronParser {
368368
outerDiv.style.backgroundColor = this.colorToCss(state.bg_color);
369369
outerDiv.style.width = "100%";
370370
outerDiv.style.display = "block";
371-
outerDiv.style.padding = "0 2px";
372371
outerDiv.appendChild(container);
373372
return [outerDiv];
374373
}
@@ -455,7 +454,6 @@ class MicronParser {
455454
if (currentSpan) {
456455
if (currentStyle && currentStyle.bg !== state.default_bg && currentStyle.bg !== "default") {
457456
currentSpan.style.display = "inline-block";
458-
currentSpan.style.padding = "0 2px";
459457
}
460458
container.appendChild(currentSpan);
461459
currentSpan = null;

0 commit comments

Comments
 (0)