From 9c011601b62779f4968bfc83a6318b53f5efdf04 Mon Sep 17 00:00:00 2001 From: BangDori <44726494+BangDori@users.noreply.github.com> Date: Sat, 25 May 2024 16:25:33 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20=EC=BA=90=EB=9F=AC=EC=85=80=20UI=20?= =?UTF-8?q?=EB=B0=8F=20=EA=B0=84=EA=B2=A9=20=EC=A1=B0=EC=A0=95=20(#78)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: 캐러셀 컨트롤 스타일 수정 * feat: 피드 푸터 간격 수정 * feat: 게시물 이미지 간격 수정 --- src/widgets/feed-carousel/ui/Carousel.scss | 6 +++--- src/widgets/feed-main-list/ui/Feed.scss | 6 ++---- src/widgets/profile-feed-list/ui/ProfileFeedList.scss | 4 ++++ 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/widgets/feed-carousel/ui/Carousel.scss b/src/widgets/feed-carousel/ui/Carousel.scss index 981291b..73ca996 100644 --- a/src/widgets/feed-carousel/ui/Carousel.scss +++ b/src/widgets/feed-carousel/ui/Carousel.scss @@ -1,5 +1,6 @@ .carousel-container { overflow-x: unset; + margin-top: 16px; .carousel { overflow: unset; @@ -27,8 +28,7 @@ justify-content: center; gap: 4px; - margin: 0; - bottom: -10px; + margin-bottom: 16px; .dot { width: 4px; @@ -36,7 +36,7 @@ margin: 0; - background-color: $gray3; + background-color: #ffffff66; box-shadow: unset; opacity: 1; diff --git a/src/widgets/feed-main-list/ui/Feed.scss b/src/widgets/feed-main-list/ui/Feed.scss index 939d385..41857f9 100644 --- a/src/widgets/feed-main-list/ui/Feed.scss +++ b/src/widgets/feed-main-list/ui/Feed.scss @@ -19,15 +19,13 @@ .feed-text { padding: 0 20px; - margin-bottom: 16px; color: $gray6; } } .feed-footer { - margin-top: 8px; - padding: 0 15px 3px 15px; + padding: 0 15px 0 20px; display: flex; justify-content: space-between; @@ -35,7 +33,7 @@ .footer-left { display: flex; - gap: 12px; + gap: 9px; .footer-count { display: flex; diff --git a/src/widgets/profile-feed-list/ui/ProfileFeedList.scss b/src/widgets/profile-feed-list/ui/ProfileFeedList.scss index 9ec2087..8a4e7e9 100644 --- a/src/widgets/profile-feed-list/ui/ProfileFeedList.scss +++ b/src/widgets/profile-feed-list/ui/ProfileFeedList.scss @@ -17,4 +17,8 @@ border-radius: 10px; padding: 20px 1px; } + + .feed-footer { + padding: 0 15px !important; + } }