diff --git a/pyscriptjs/examples/bokeh.html b/pyscriptjs/examples/bokeh.html
index 541040d..9cc2e3c 100644
--- a/pyscriptjs/examples/bokeh.html
+++ b/pyscriptjs/examples/bokeh.html
@@ -1,6 +1,7 @@
Bokeh Example
+
@@ -40,11 +41,7 @@ p = figure(plot_width=400, plot_height=400)
p.circle([1, 2, 3, 4, 5], [6, 7, 2, 4, 5], size=15, line_color="navy", fill_color="orange", fill_alpha=0.5)
p_json = json.dumps(json_item(p, "myplot"))
-print("about to embed")
-
Bokeh.embed.embed_item(JSON.parse(p_json))
-
-print ("Done embedding...")
diff --git a/pyscriptjs/examples/bokeh_interactive.html b/pyscriptjs/examples/bokeh_interactive.html
index 3c4b060..87149a0 100644
--- a/pyscriptjs/examples/bokeh_interactive.html
+++ b/pyscriptjs/examples/bokeh_interactive.html
@@ -1,6 +1,7 @@
Bokeh Example
+
diff --git a/pyscriptjs/examples/index.html b/pyscriptjs/examples/index.html
index 34cd04f..70c0dcf 100644
--- a/pyscriptjs/examples/index.html
+++ b/pyscriptjs/examples/index.html
@@ -90,6 +90,12 @@
WARNING: This examples takes a little longer to load. So be patient :)
+
+ Interactive application exploring the NYC Taxi dataset using Panel and DeckGL
+
+ WARNING: This examples takes a little longer to load. So be patient :)
+
+
A Toga application (a Fahrenheit to Celsius converter), rendered as a Single Page App
diff --git a/pyscriptjs/examples/panel.html b/pyscriptjs/examples/panel.html
index 2ef1804..64340a6 100644
--- a/pyscriptjs/examples/panel.html
+++ b/pyscriptjs/examples/panel.html
@@ -2,6 +2,7 @@
Panel Example
+
diff --git a/pyscriptjs/examples/panel_deckgl.html b/pyscriptjs/examples/panel_deckgl.html
index 2e2d13b..66adcbb 100644
--- a/pyscriptjs/examples/panel_deckgl.html
+++ b/pyscriptjs/examples/panel_deckgl.html
@@ -2,6 +2,7 @@
+
diff --git a/pyscriptjs/examples/panel_kmeans.html b/pyscriptjs/examples/panel_kmeans.html
index bfbfd99..cbf8d80 100644
--- a/pyscriptjs/examples/panel_kmeans.html
+++ b/pyscriptjs/examples/panel_kmeans.html
@@ -2,6 +2,7 @@
+
diff --git a/pyscriptjs/examples/panel_stream.html b/pyscriptjs/examples/panel_stream.html
index c24db1b..4123fbf 100644
--- a/pyscriptjs/examples/panel_stream.html
+++ b/pyscriptjs/examples/panel_stream.html
@@ -2,7 +2,7 @@
-
+
diff --git a/pyscriptjs/src/components/pybox.ts b/pyscriptjs/src/components/pybox.ts
index 8d73994..308f113 100644
--- a/pyscriptjs/src/components/pybox.ts
+++ b/pyscriptjs/src/components/pybox.ts
@@ -54,7 +54,7 @@ export class PyBox extends HTMLElement {
this.widths.forEach((width, index)=>{
const node: ChildNode = mainDiv.childNodes[index];
- addClasses(node, [width, 'mx-4'])
+ addClasses(node, [width, 'mx-1'])
})