Skip to content

Commit

Permalink
refactor: icon block 맨 위에 위치하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
pipisebastian committed Dec 4, 2024
1 parent 8bf7a23 commit c00dbd8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
});

Expand Down
3 changes: 2 additions & 1 deletion client/src/features/editor/components/block/Block.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ export const contentWrapperStyle = cva({
position: "relative",
flex: 1,
flexDirection: "row",
alignItems: "center",
alignItems: "flex-start",
width: "100%",
height: "100%",
},
});

Expand Down

0 comments on commit c00dbd8

Please sign in to comment.