Skip to content

Commit

Permalink
fix/#61: 각종 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yh-project committed Aug 31, 2024
1 parent 50206c7 commit 121f37c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ssh-web/src/pages/Egg/EggFetch.styles.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { tv } from 'tailwind-variants';

export const contentStyles = tv({
base: 'flex flex-col justify-between items-center desktop:w-[48rem] desktop:h-[48rem] desktop:rounded-lg desktop:py-0 tablet:w-full tablet:h-full tablet:rounded-t-[2rem] tablet:py-8 mob:!pb-0 bg-primary-100 px-4',
base: 'flex flex-col justify-between items-center desktop:w-[48rem] desktop:h-[48rem] desktop:rounded-lg desktop:py-0 tablet:w-full tablet:h-full tablet:rounded-t-[2rem] tablet:py-8 mob:!pb-0 bg-primary-100 px-4 bg-white',
});

export const containerStyles = tv({
Expand Down
2 changes: 1 addition & 1 deletion ssh-web/src/utils/appUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ export const getNavHasBack = (path?: string) => {
return true;
};
export const getHasBottom = (path: string) => {
if (path === '/mypage') return false;
if (path === '/mypage' || path === '/quiz/solve') return false;
return true;
};

0 comments on commit 121f37c

Please sign in to comment.