Skip to content

Commit b6f0add

Browse files
committed
fix css in demo apps
1 parent 05e2467 commit b6f0add

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

demos/pyvista-terrain-following-mesh/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def updateWarp(factor=1):
118118
),
119119
),
120120
],
121-
style={"height": "12%", "align-items": "center"},
121+
style={"height": "12%", "alignItems": "center"},
122122
),
123123
html.Div(
124124
html.Div(vtk_view, style={"height": "100%", "width": "100%"}),

demos/slice-rendering/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
style={"height": "calc(100vh - 30px)"},
8585
children=[
8686
html.Div(
87-
style={"height": "20%", "display": "flex", "align-items": "center"},
87+
style={"height": "20%", "display": "flex", "alignItems": "center"},
8888
children=[html.Br(), controls, html.Br(),],
8989
),
9090
html.Div(slice_view, style={"height": "80%"}),

demos/usage-algorithm/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
app.layout = dbc.Container(
5757
fluid=True,
58-
style={"margin-top": "15px", "height": "calc(100vh - 30px)"},
58+
style={"marginTop": "15px", "height": "calc(100vh - 30px)"},
5959
children=[
6060
dbc.Row(
6161
[

0 commit comments

Comments
 (0)