Skip to content

Commit b3d79ae

Browse files
committed
fix: home tab indicator style
1 parent 5a67114 commit b3d79ae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/velog-web/src/features/home/components/HomeTab/HomeTab.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@
7575
background: var(--border1);
7676
bottom: -10px;
7777

78-
@media screen and (max-width: 425px) {
79-
width: 29%;
78+
@media screen and (max-width: 430px) {
79+
width: 34%;
8080
margin-left: 3px;
8181
}
8282
}

packages/velog-web/src/features/home/components/HomeTab/HomeTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function HomeTab({ isFloatingHeader = false }: Props) {
6060
<motion.div
6161
initial={false}
6262
animate={{
63-
left: isFeed ? '71.33%' : isRecent ? '37.33%' : '1%',
63+
left: isFeed ? '68.33%' : isRecent ? '38.33%' : '2%',
6464
}}
6565
className={cx('indicator')}
6666
/>

0 commit comments

Comments
 (0)