fix: Button icons tooltips opening out of view due to padding issue

pull/11826/head
Siddharth Movaliya 2023-10-11 16:41:42 +05:30
parent f824490873
commit 969da3d55f
1 changed files with 1 additions and 1 deletions

View File

@ -1008,7 +1008,7 @@ function MainContainer({
<main className="bg-default relative z-0 flex-1 focus:outline-none">
{/* show top navigation for md and smaller (tablet and phones) */}
{TopNavContainerProp}
<div className="max-w-full px-2 py-4 lg:px-6">
<div className="max-w-full px-2 pb-4 pt-8 lg:px-6">
<ErrorBoundary>
{!props.withoutMain ? <ShellMain {...props}>{props.children}</ShellMain> : props.children}
</ErrorBoundary>