Skip to content

Commit c0b80b8

Browse files
authored
fix(ui): add proper margin to error notification for consistent spacing (#256)
* fix(ui): add proper margin to error notification for consistent spacing Signed-off-by: surya4419 <[email protected]> * feat(editor): Add auto-pairing for curly braces in Concerto model (#281) * feat(editor): Add auto-pairing for curly braces in Concerto model section Signed-off-by: surya4419 <[email protected]> * feat(editor): Add auto-pairing for curly braces in Concerto model section Signed-off-by: surya4419 <[email protected]> * feat(editor): Add auto-pairing for curly braces in Concerto model section Signed-off-by: surya4419 <[email protected]> --------- Signed-off-by: surya4419 <[email protected]> --------- Signed-off-by: surya4419 <[email protected]>
1 parent 4ccf264 commit c0b80b8

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)