Skip to content

Commit

Permalink
🐛 fix issue with nonkonveyor header styling (#1465)
Browse files Browse the repository at this point in the history
  • Loading branch information
gitdallas authored Oct 11, 2023
1 parent 11feb0f commit fdb428d
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions client/src/app/layout/HeaderApp/HeaderApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,23 +86,21 @@ export const HeaderApp: React.FC = () => {
<BarsIcon />
</PageToggleButton>
</MastheadToggle>
{APP_BRAND === BrandType.Konveyor ? (
<MastheadMain>
<MastheadBrand>
<MastheadMain>
<MastheadBrand>
{APP_BRAND === BrandType.Konveyor ? (
<Brand
src={konveyorBrandImage}
alt="brand"
heights={{ default: "60px" }}
/>
</MastheadBrand>
</MastheadMain>
) : (
<MastheadContent>
<Title className="logo-pointer" headingLevel="h1" size="2xl">
Migration Toolkit for Applications
</Title>
</MastheadContent>
)}
) : (
<Title className="logo-pointer" headingLevel="h1" size="2xl">
Migration Toolkit for Applications
</Title>
)}
</MastheadBrand>
</MastheadMain>
<MastheadContent>{toolbar}</MastheadContent>
</Masthead>
);
Expand Down

0 comments on commit fdb428d

Please sign in to comment.