Skip to content

Commit

Permalink
fix(ui): resolve the height issue in admin panel
Browse files Browse the repository at this point in the history
  • Loading branch information
liangfung committed Dec 20, 2024
1 parent c78539d commit f749de4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ee/tabby-ui/components/license-banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ export function LicenseBanner() {
return (
<div
className={cn(
'flex items-center justify-between border-b bg-secondary px-4 text-secondary-foreground transition-[height,opacity] md:px-5',
'flex items-center justify-between bg-secondary px-4 text-secondary-foreground transition-[height,opacity] md:px-5',
{
'opacity-100 pointer-events-auto': isShowLicenseBanner,
'opacity-100 pointer-events-auto border-b': isShowLicenseBanner,
'opacity-0 pointer-events-none': !isShowLicenseBanner
}
)}
Expand Down

0 comments on commit f749de4

Please sign in to comment.