Skip to content

Commit

Permalink
fixup! fixup! feat: implement an ability to customize Eclipse Che logo
Browse files Browse the repository at this point in the history
  • Loading branch information
olexii4 committed Aug 30, 2023
1 parent 0973366 commit 918fefe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 0 additions & 3 deletions packages/dashboard-frontend/src/Layout/index.module.css

This file was deleted.

4 changes: 1 addition & 3 deletions packages/dashboard-frontend/src/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ import { ToggleBarsContext } from '../contexts/ToggleBars';
import { signOut } from '../services/helpers/login';
import { selectDashboardLogo } from '../store/ServerConfig/selectors';

import * as styles from './index.module.css';

const IS_MANAGED_SIDEBAR = false;

type Props = MappedProps & {
Expand Down Expand Up @@ -123,7 +121,7 @@ export class Layout extends React.PureComponent<Props, State> {
<Header
history={history}
isVisible={isHeaderVisible}
logo={<Brand src={logoSrc} className={styles.cheBrand} alt="Logo" />}
logo={<Brand src={logoSrc} alt="Logo" />}
logout={() => signOut()}
toggleNav={() => this.toggleNav()}
/>
Expand Down
4 changes: 4 additions & 0 deletions packages/dashboard-frontend/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@ div.main-page-loader .ide-page-loader-content img {
animation-timing-function: linear;
}

.pf-c-page__header-brand-link .pf-c-brand {
min-height: 50px;
}

@keyframes hide {
0% {
overflow: visible;
Expand Down

0 comments on commit 918fefe

Please sign in to comment.