diff --git a/client/src/features/editor/components/IconBlock/IconBlock.style.ts b/client/src/features/editor/components/IconBlock/IconBlock.style.ts index 2a95384..f48ef8c 100644 --- a/client/src/features/editor/components/IconBlock/IconBlock.style.ts +++ b/client/src/features/editor/components/IconBlock/IconBlock.style.ts @@ -4,8 +4,8 @@ import { css, cva } from "@styled-system/css"; export const iconContainerStyle = css({ display: "flex", justifyContent: "center", - alignItems: "center", - minWidth: "24px", + width: "24px", + height: "24px", marginRight: "8px", }); diff --git a/client/src/features/editor/components/block/Block.style.ts b/client/src/features/editor/components/block/Block.style.ts index 89e9dc3..ee9b14a 100644 --- a/client/src/features/editor/components/block/Block.style.ts +++ b/client/src/features/editor/components/block/Block.style.ts @@ -38,8 +38,9 @@ export const contentWrapperStyle = cva({ position: "relative", flex: 1, flexDirection: "row", - alignItems: "center", + alignItems: "flex-start", width: "100%", + height: "100%", }, });