From d5f8ec8e02b970ffc05ef2c3d80fb3c80873fe73 Mon Sep 17 00:00:00 2001 From: junsushin-dev Date: Fri, 13 Nov 2020 10:43:53 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=EB=A0=88=EC=9D=B4=EB=B8=94=20?= =?UTF-8?q?=EC=A7=A4=EB=A6=AC=EA=B3=A0=20=EC=98=A4=EB=A5=B8=EC=AA=BD?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EB=84=98=EC=B9=98=EB=8A=94=20=EB=AC=B8?= =?UTF-8?q?=EC=A0=9C=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit flex-wrap을 nowrap(default)에서 wrap으로 변경 --- frontend/src/components/SelectSidebar/SelectLabelsContents.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/SelectSidebar/SelectLabelsContents.jsx b/frontend/src/components/SelectSidebar/SelectLabelsContents.jsx index 6cb680f..323dd87 100644 --- a/frontend/src/components/SelectSidebar/SelectLabelsContents.jsx +++ b/frontend/src/components/SelectSidebar/SelectLabelsContents.jsx @@ -4,6 +4,7 @@ import styled from 'styled-components'; const ContentContainer = styled.div` display: flex; + flex-wrap: wrap; padding: 5px; gap: 10px; `; From 389a9a4cc5800c69583fc8251d98d7403a804a48 Mon Sep 17 00:00:00 2001 From: junsushin-dev Date: Fri, 13 Nov 2020 10:44:33 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20NewIssue=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=EC=97=90=EC=84=9C=20=EC=BD=94=EB=A9=98=ED=8A=B8=20?= =?UTF-8?q?=EC=9E=85=EB=A0=A5=EC=B0=BD=20=EC=82=90=EC=A0=B8=EB=82=98?= =?UTF-8?q?=EC=98=A4=EB=8A=94=20=EB=AC=B8=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit width property를 96%에서 삭제해서 auto로 변경하여 해결 --- frontend/src/components/CommentInput.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/components/CommentInput.jsx b/frontend/src/components/CommentInput.jsx index 954a0ee..e664e3f 100644 --- a/frontend/src/components/CommentInput.jsx +++ b/frontend/src/components/CommentInput.jsx @@ -30,7 +30,6 @@ const InputComment = styled.textarea` padding: 8px; font-size: 16px; margin:10px; - width:96%; border: 1px solid #dfe2e5; `;