From 49bf5a8e4691ecae59bee269e045ad0ce2c31263 Mon Sep 17 00:00:00 2001 From: U5 Date: Wed, 10 Jun 2026 21:40:47 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=E3=83=90=E3=83=83=E3=82=B8=E3=81=AE?= =?UTF-8?q?=E8=A1=A8=E7=A4=BA=E7=AF=84=E5=9B=B2=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ui/Badge/styles.module.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/components/ui/Badge/styles.module.css b/src/components/ui/Badge/styles.module.css index 4b0c720..5a4e40e 100644 --- a/src/components/ui/Badge/styles.module.css +++ b/src/components/ui/Badge/styles.module.css @@ -58,4 +58,11 @@ white-space: normal; word-break: break-word; line-height: 1.1; + overflow-y: auto; + scrollbar-width: none; + -ms-overflow-style: none; + + &::-webkit-scrollbar { + display: none; + } } From 00341147ebf5697358d5a6612294efdd13605345 Mon Sep 17 00:00:00 2001 From: U5 Date: Wed, 10 Jun 2026 21:48:49 +0900 Subject: [PATCH 2/2] =?UTF-8?q?update:workcard=E3=81=AE=E3=83=87=E3=82=B6?= =?UTF-8?q?=E3=82=A4=E3=83=B3=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/WorkCard/styles.module.css | 7 +++++++ src/components/ui/Tag/styles.module.css | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/components/WorkCard/styles.module.css b/src/components/WorkCard/styles.module.css index 97b0786..a48ab29 100644 --- a/src/components/WorkCard/styles.module.css +++ b/src/components/WorkCard/styles.module.css @@ -36,6 +36,7 @@ display: flex; flex-direction: column; justify-content: space-around; + gap: 16px; height: calc(100% - 200px); padding: 16px; overflow: hidden; @@ -43,6 +44,12 @@ .title { font-size: 2rem; font-weight: bold; + overflow: hidden; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 1; + line-clamp: 1; + text-overflow: ellipsis; } .tags { diff --git a/src/components/ui/Tag/styles.module.css b/src/components/ui/Tag/styles.module.css index 3288e85..9b333f2 100644 --- a/src/components/ui/Tag/styles.module.css +++ b/src/components/ui/Tag/styles.module.css @@ -2,7 +2,7 @@ display: inline-block; color: black; border-radius: 50px; - font-size: 1.6rem; + font-size: 1.4rem; font-weight: bold; padding: 8px 16px; white-space: nowrap; @@ -20,6 +20,6 @@ @media (max-width: 600px) { .tag { - font-size: 1.4rem; + font-size: 1.2rem; } } \ No newline at end of file