Skip to content

Commit

Permalink
fix pointer (#718)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibolton336 committed Mar 6, 2020
1 parent eef7842 commit cefe6a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions src/app/common/components/HeaderComponent.module.scss
@@ -0,0 +1,3 @@
.logoPointer {
cursor: default !important;
}
5 changes: 2 additions & 3 deletions src/app/common/components/HeaderComponent.tsx
Expand Up @@ -4,13 +4,12 @@ import {
PageHeader,
} from '@patternfly/react-core';
import openshiftLogo from './CAM_LOGO.svg';
const styles = require('./HeaderComponent.module');

const HeaderComponent = (
<PageHeader
logo={
<React.Fragment>
<Brand src={openshiftLogo} alt="OpenShift Logo" />
</React.Fragment>
<Brand className={styles.logoPointer} src={openshiftLogo} alt="OpenShift Logo" />
}
/>
);
Expand Down

0 comments on commit cefe6a8

Please sign in to comment.