We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f056adf commit 6de14ddCopy full SHA for 6de14dd
src/ui/layouts/common/Tabs/index.tsx
@@ -50,14 +50,14 @@ export const Tabs: React.FC<{ pages: TabPage[]; basePath: string }> = ({
50
<IfElse
51
condition={isActive}
52
renderWhenFalse={() => (
53
- <Truncate maxLines={1}>
54
- <Paragraph color="grey">{page.text}</Paragraph>
55
- </Truncate>
+ <Truncate maxLines={1}>
+ <Paragraph color="grey" style={{ padding: '5px 0' }} >{page.text}</Paragraph>
+ </Truncate>
56
)}
57
renderWhenTrue={() => (
58
59
- <Paragraph color="primary">{page.text}</Paragraph>
60
+ <Paragraph color="primary" style={{ padding: '5px 0' }}>{page.text}</Paragraph>
61
62
/>
63
</Link>
0 commit comments