Skip to content

Commit

Permalink
fix: 하단 네비게이션 바 UI 글자 크기 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
cys4585 committed Aug 7, 2024
1 parent e9cdde8 commit 604ab49
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export const navigationBarItem = (props: {
const { theme, isActive } = props;

return css`
${theme.typography.c2}
display: flex;
flex: 1;
flex-direction: column;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function NavigationBarItem(props: NavigationBarItemProps) {
onClick={() => onClick(tab)}
>
{tabIcon}
<span>{tab}</span>
<span css={theme.typography.c2}>{tab}</span>
</li>
);
}

0 comments on commit 604ab49

Please sign in to comment.