Skip to content

Commit

Permalink
fix: tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
aleixhub committed Aug 2, 2024
1 parent afd47b6 commit 523d3d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ iframe {
text-decoration: underline;
}
.tablinks > button {
height: 51px;
height: 100%;
align-items: center;
}

Expand Down
2 changes: 1 addition & 1 deletion src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ export default function () {
{tabs.length > 0 ? (
<div className="split right">
{tabs.length > 1 ? (
<Tabs activeKey={currentTabName} onSelect={handleTabClick} style={{ height: '59px' }}>
<Tabs activeKey={currentTabName} onSelect={handleTabClick} style={{ height: '56px' }}>
{tabs.map((s) => (
<Tab eventKey={s.name} title={s.name} className="tablinks"></Tab>
))}
Expand Down

0 comments on commit 523d3d0

Please sign in to comment.