mckinsey / vizro

Vizro is a toolkit for creating modular data visualization applications.
https://vizro.readthedocs.io/en/stable/
Apache License 2.0
2.47k stars 111 forks source link

Replace `dbc.Button` with `dbc.Link` in Navigation #326

Closed huong-li-nguyen closed 4 months ago

huong-li-nguyen commented 4 months ago

Description

Context: Changes are necessary to ensure the use of semantically correct elements in the DOM, which is advantageous for HTML documents in general. This approach also proves beneficial when implementing a Bootstrap theme. Previously, the navigation erroneously adopted the primary button color when incorporating a Bootstrap theme. By utilizing the appropriate elements, we ensure that the correct coloring is applied based on the intended HTML element.

For our future selves to understand the decisions made here:

Screenshot

Notice

huong-li-nguyen commented 4 months ago

Are there any dbc.Button left in our codebase now apart from the vm.Button itself?

No, there are no dbc.Buttons anymore 👍 We just use it for the actual Button component and for the 404 landing page where there is an actual Button as well.