Skip to content

Commit

Permalink
fix overlay issue
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvoskamp committed Sep 11, 2023
1 parent fb61784 commit e68788b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/laboratory/src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<body style={{ minHeight: '100vh' }}>
<ColorModeScript initialColorMode="system" />
<Main />
<NextScript />
Expand Down
4 changes: 1 addition & 3 deletions packages/ui/src/composites/wui-tabs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ export class WuiTabs extends LitElement {
data-active=${isActive}
>
<wui-icon size="sm" color="inherit" name=${tab.icon}></wui-icon>
<wui-text style="{{opacity:" 0;}} variant="small-600" color="inherit"
>${tab.label}</wui-text
>
<wui-text variant="small-600" color="inherit"> ${tab.label} </wui-text>
</button>
`
})
Expand Down

0 comments on commit e68788b

Please sign in to comment.