Skip to content

Commit 089d109

Browse files
committed
Refactor Markdown styling in LWA_dashboard notebook for consistency by removing inline styles from status and label rows.
1 parent 833836f commit 089d109

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

notebooks/LWA_dashboard.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -583,14 +583,14 @@
583583
" filled = st >= 1\n",
584584
" return pn.Column(\n",
585585
" pn.indicators.BooleanStatus(value=filled, color=color, width=22, height=22),\n",
586-
" pn.pane.Markdown(str(name), styles={'text-align': 'center', 'font-size': '11px'}),\n",
586+
" pn.pane.Markdown(str(name)),\n",
587587
" width=cell_width,\n",
588588
" margin=(2, 4),\n",
589589
" align='center',\n",
590590
" )\n",
591591
"\n",
592592
"label_row = pn.Row(\n",
593-
" pn.pane.Markdown('**Go/No-Go:** F-eng, X-eng, DR', styles={'padding': '10px', 'border': '2px solid var(--panel-border-color)'}),\n",
593+
" pn.pane.Markdown('**Go/No-Go:** F-eng, X-eng, DR'),\n",
594594
" width=900,\n",
595595
")\n",
596596
"f_row = pn.Row(\n",

0 commit comments

Comments
 (0)