Skip to content

Commit 84da4c2

Browse files
committed
Adds more gap for a button in a Empty VStack
1 parent 034eea5 commit 84da4c2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

frontend/src/components/pages/connect/helper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ export function NotConfigured() {
481481
return (
482482
<PageContent key="b">
483483
<Section>
484-
<VStack>
484+
<VStack gap={4}>
485485
<Empty description="Not Configured" />
486486
<Text textAlign="center">
487487
Kafka Connect is not configured in Redpanda Console.

frontend/src/components/pages/schemas/EditCompatibility.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function renderNotConfigured() {
2727
return (
2828
<PageContent>
2929
<Section>
30-
<VStack>
30+
<VStack gap={4}>
3131
<Empty
3232
description="Not Configured"
3333
/>

frontend/src/components/pages/schemas/Schema.List.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function renderNotConfigured() {
5555
return (
5656
<PageContent>
5757
<Section>
58-
<VStack>
58+
<VStack gap={4}>
5959
<Empty description="Not Configured" />
6060
<Text textAlign="center">
6161
Schema Registry is not configured in Redpanda Console.

frontend/src/components/pages/topics/Tab.Docu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ const errorEmpty = renderDocuError('Empty', <>
117117
function renderDocuError(title: string, body: JSX.Element) {
118118
return (
119119
<motion.div {...animProps} key={'b'} style={{ margin: '2rem 1rem' }}>
120-
<VStack>
120+
<VStack gap={4}>
121121
<Empty
122122
description={title}
123123
/>

frontend/src/components/pages/topics/Tab.Messages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ export class TopicMessageView extends Component<TopicMessageViewProps> {
658658
</ul> : null;
659659

660660
return (
661-
<VStack>
661+
<VStack gap={4}>
662662
<Empty description="No messages" />
663663
{hintBox}
664664
</VStack>

0 commit comments

Comments
 (0)