Skip to content

Commit

Permalink
fix: missing whitespace (#1969)
Browse files Browse the repository at this point in the history
* fix: missing whitespace

* fixup! fix: missing whitespace
  • Loading branch information
aleixhub committed Jun 18, 2024
1 parent d359d6c commit 74e874e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion catalog/ui/src/app/components/IncidentsBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const IncidentsBanner: React.FC = () => {
display: 'flex',
gap: 'var(--pf-v5-global--spacer--sm)',
flexDirection: 'row',
padding: 'var(--pf-v5-global--spacer--sm--pf-v5-pf-v5-pf-v5-global--spacer--xs)',
padding: 'var(--pf-v5-global--spacer--sm) var(--pf-v5-global--spacer--xs)',
position: 'relative',
}}
>
Expand Down
2 changes: 1 addition & 1 deletion catalog/ui/src/app/components/NotFound.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const NotFoundComponent: React.FC<{
type: string;
}> = ({ name, namespace, type }) => (
<EmptyState variant="full">
<EmptyStateHeader titleText={<>{type}not found</>} icon={<EmptyStateIcon icon={ExclamationTriangleIcon} />} headingLevel="h1" />
<EmptyStateHeader titleText={<>{type} not found</>} icon={<EmptyStateIcon icon={ExclamationTriangleIcon} />} headingLevel="h1" />
<EmptyStateBody>
{type} {name} was not found{namespace ? ` in project ${namespace}` : ''}.
</EmptyStateBody>
Expand Down
16 changes: 8 additions & 8 deletions catalog/ui/src/app/components/incidents-banner.css
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
.pf-v5-c-banner.pf-m-warning {
.pf-v5-c-banner.pf-m-gold {
background-color: #fdf7e7;
border-top: 2px solid #f0ab00;
}
.pf-v5-c-banner.pf-m-info {
.pf-v5-c-banner.pf-m-blue {
background-color: #e7f1fa;
border-top: 2px solid #2b9af3;
}
.pf-v5-c-banner.pf-m-info a,
.pf-v5-c-banner.pf-m-info .editor-link {
.pf-v5-c-banner.pf-m-blue a,
.pf-v5-c-banner.pf-m-blue .editor-link {
color: #151515 !important;
}
.pf-v5-c-banner.pf-m-critical {
.pf-v5-c-banner.pf-m-red {
background-color: #faeae8;
color: #fff;
border-top: 2px solid #c9190b;
}
.pf-v5-c-banner.pf-m-warning svg {
.pf-v5-c-banner.pf-m-gold svg {
fill: #f0ab00;
}
.pf-v5-c-banner.pf-m-info svg {
.pf-v5-c-banner.pf-m-blue svg {
fill: #2b9af3;
}
.pf-v5-c-banner.pf-m-critical svg {
.pf-v5-c-banner.pf-m-red svg {
fill: #c9190b;
}
.incidents-banner__close-btn svg {
Expand Down

0 comments on commit 74e874e

Please sign in to comment.