Skip to content

Commit a44e558

Browse files
committed
fix(ui): add proper margin to error notification for consistent spacing
Signed-off-by: surya4419 <suryaa4419@gmail.com>
1 parent 1544815 commit a44e558

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/helpers/Errors.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Alert, Space } from "antd";
44
function Errors() {
55
const error = useAppStore((state) => state.error);
66
return error ? (
7-
<Space direction="vertical" style={{ width: "100%" }}>
7+
<Space direction="vertical" style={{ width: "100%", margin: "24px 0 0 24px" }}>
88
<Alert message={error} type="error" />
99
</Space>
1010
) : (

0 commit comments

Comments
 (0)