feat: update BlankDashboardUnit styling to conditionally apply border based on edit mode

This commit is contained in:
Nawaz Dhandala
2026-03-30 15:25:31 +01:00
parent ae230589c5
commit 02c0c02760

View File

@@ -21,7 +21,9 @@ const BlankDashboardUnitElement: FunctionComponent<ComponentProps> = (
props.onClick();
}}
style={{
border: "none",
border: props.isEditMode
? "1px solid rgba(203, 213, 225, 0.4)"
: "none",
borderRadius: "6px",
}}
/>