Skip to content

Commit ae7828f

Browse files
fix(dashboard): Fix intersecting borders and inconsistent rounded corners (#3717)
Co-authored-by: Housein Abo Shaar <76689341+GogoIsProgramming@users.noreply.github.com>
1 parent 3688fda commit ae7828f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/dashboard/src/lib/framework/layout-engine/location-wrapper.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ export function LocationWrapper({ children, identifier }: Readonly<LocationWrapp
7373
return (
7474
<div
7575
className={cn(
76-
`ring-2 p-2 transition-all delay-50 relative`,
76+
`ring-2 transition-all ring-offset-4 delay-50 relative`,
7777
isHovered || isPopoverOpen ? 'ring-dev-mode' : 'ring-transparent',
78-
isPageWrapper ? 'ring-inset' : '',
79-
identifier ? 'rounded-md' : 'rounded-xl',
78+
isPageWrapper ? 'ring-offset-8' : '',
79+
identifier ? 'rounded-md' : 'rounded',
8080
)}
8181
onMouseEnter={handleMouseEnter}
8282
onMouseLeave={handleMouseLeave}

0 commit comments

Comments
 (0)