Update app.py
Browse files
app.py
CHANGED
|
@@ -72,8 +72,8 @@ app.layout = dbc.Container([
|
|
| 72 |
dbc.Button(
|
| 73 |
matrix_type,
|
| 74 |
id=f'btn-{matrix_type.lower().replace(" ", "-")}',
|
| 75 |
-
color="
|
| 76 |
-
className="mb-2 w-100",
|
| 77 |
style={'overflow': 'hidden', 'text-overflow': 'ellipsis', 'white-space': 'nowrap'}
|
| 78 |
) for matrix_type in matrix_types.keys()
|
| 79 |
])
|
|
|
|
| 72 |
dbc.Button(
|
| 73 |
matrix_type,
|
| 74 |
id=f'btn-{matrix_type.lower().replace(" ", "-")}',
|
| 75 |
+
color="link",
|
| 76 |
+
className="mb-2 w-100 text-left custom-button",
|
| 77 |
style={'overflow': 'hidden', 'text-overflow': 'ellipsis', 'white-space': 'nowrap'}
|
| 78 |
) for matrix_type in matrix_types.keys()
|
| 79 |
])
|