Skip to content

Commit

Permalink
fix: removve toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskari committed Jan 29, 2025
1 parent 7c9fb3d commit 88f85ee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
5 changes: 4 additions & 1 deletion src/components/KymaCompanion/components/KymaCompanion.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@
width: 100%;

&__header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--sapContent_Illustrative_Color1);
min-height: 60px;
padding: 0.5rem;
padding: 0 1rem;

.title {
color: white;
Expand Down
9 changes: 3 additions & 6 deletions src/components/KymaCompanion/components/KymaCompanion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import {
Tab,
TabContainer,
Title,
Toolbar,
ToolbarSpacer,
} from '@ui5/webcomponents-react';
import { useRecoilState } from 'recoil';
import {
Expand All @@ -27,11 +25,10 @@ export default function KymaCompanion() {
<Card
className="kyma-companion"
header={
<Toolbar design="Transparent" className="kyma-companion__header">
<Title level="H4" className="title">
<div className="kyma-companion__header">
<Title level="H4" size="H4" className="title">
{t('kyma-companion.name')}
</Title>
<ToolbarSpacer />
<div>
<Button
design="Transparent"
Expand All @@ -55,7 +52,7 @@ export default function KymaCompanion() {
}
/>
</div>
</Toolbar>
</div>
}
>
<TabContainer
Expand Down

0 comments on commit 88f85ee

Please sign in to comment.