I'm working with Dash to build a dashboard. Consider the following code:
def get_index():
index = html.Div([
dcc.Link('Page 1', href='/page-1'),
html.Br(),
dcc.Link('Page 2', href='/page-2')
], style = {'display':'inline-block','columnCount': 2})
return index
This gives me the following output in my app:
Question: How do I remove the bar below the links and change the font and color?
Thanks!