From 8bf7a23f6c4df062b3e66d26c946b04bbed0431e Mon Sep 17 00:00:00 2001 From: pipisebastian Date: Wed, 4 Dec 2024 20:25:11 +0900 Subject: [PATCH 1/3] =?UTF-8?q?refactor:=20lang=20ko=EB=A1=9C=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #290 --- client/index.html | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/client/index.html b/client/index.html index c12f648..b2b4e07 100644 --- a/client/index.html +++ b/client/index.html @@ -1,5 +1,5 @@ - + @@ -14,19 +14,13 @@ - + - + From c00dbd86a39fe406310dec002844b8e128a9bc49 Mon Sep 17 00:00:00 2001 From: pipisebastian Date: Wed, 4 Dec 2024 20:25:33 +0900 Subject: [PATCH 2/3] =?UTF-8?q?refactor:=20icon=20block=20=EB=A7=A8=20?= =?UTF-8?q?=EC=9C=84=EC=97=90=20=EC=9C=84=EC=B9=98=ED=95=98=EB=8F=84?= =?UTF-8?q?=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #290 --- .../features/editor/components/IconBlock/IconBlock.style.ts | 4 ++-- client/src/features/editor/components/block/Block.style.ts | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) 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%", }, }); From 91ec9bf70610dfb432298e111640063a31b117a7 Mon Sep 17 00:00:00 2001 From: pipisebastian Date: Wed, 4 Dec 2024 20:25:50 +0900 Subject: [PATCH 3/3] =?UTF-8?q?refactor:=20menu=20block=20=EC=82=AC?= =?UTF-8?q?=EC=9D=B4=EC=A6=88=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #290 --- .../features/editor/components/MenuBlock/MenuBlock.style.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/features/editor/components/MenuBlock/MenuBlock.style.ts b/client/src/features/editor/components/MenuBlock/MenuBlock.style.ts index 23635f7..1e73065 100644 --- a/client/src/features/editor/components/MenuBlock/MenuBlock.style.ts +++ b/client/src/features/editor/components/MenuBlock/MenuBlock.style.ts @@ -8,8 +8,8 @@ export const menuBlockStyle = css({ left: 0, justifyContent: "center", alignItems: "center", - width: "20px", - height: "20px", + width: "24px", + height: "24px", marginLeft: "-20px", opacity: 0, transition: "opacity 0.2s ease-in-out",