Skip to content

Commit 57d6ae9

Browse files
committed
add x margin to pybox children
1 parent 4ba90a9 commit 57d6ae9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyscriptjs/src/components/pybox.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export class PyBox extends HTMLElement {
5858

5959
for (let i in this.widths) {
6060
// @ts-ignore
61-
addClasses(mainDiv.childNodes[parseInt(i)], [this.widths[i]]);
61+
addClasses(mainDiv.childNodes[parseInt(i)], [this.widths[i], 'mx-4']);
6262
}
6363

6464
this.appendChild(mainDiv);

0 commit comments

Comments
 (0)