Skip to content

Commit

Permalink
[JN-1104] Fix .svg Navbar logos (#914)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewBemis authored May 31, 2024
1 parent 1f0f760 commit b27de2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui-participant/src/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function Navbar(props: NavbarProps) {
return <nav {...props} className={classNames('navbar navbar-expand-lg navbar-light', props.className)}>
<div className="container-fluid">
<NavLink to="/" className="navbar-brand">
<img className="Navbar-logo" style={{ maxHeight: '30px' }}
<img className="Navbar-logo" style={{ height: '30px', maxHeight: '30px' }}
src={getImageUrl(localContent.navLogoCleanFileName, localContent.navLogoVersion)} alt="logo"/>
</NavLink>
<button
Expand Down

0 comments on commit b27de2f

Please sign in to comment.