Skip to content

Commit

Permalink
캐릭터 메모 위에 마진 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
황 태환 committed Feb 26, 2024
1 parent 08135aa commit dea75aa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function CharacterMemos() {
});

return (
<div className=" flex h-auto w-full flex-col items-center rounded-t-[24px] bg-newGray-100 pb-[160px] pt-[24px]">
<div className=" mt-[16px] flex h-auto w-full flex-col items-center rounded-t-[24px] bg-newGray-100 pb-[160px] pt-[24px]">
<h3 className="mb-[20px] w-full px-[24px] text-left text-Subtitle1 text-newGray-900">{`메모 ${totalCount > 0 ? totalCount : ''}`}</h3>
{memos.length === 0 && <NoMemoFallback />}
{memos.length > 0 && (
Expand Down
2 changes: 0 additions & 2 deletions src/components/character-detail/character-exp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

import { motion } from 'framer-motion';
import { useEffect, useState } from 'react';
import { Dialog, DialogContent, DialogOverlay } from '../ui-shadcn/dialog';
import { DialogPortal } from '@radix-ui/react-dialog';

type Props = {
animate?: boolean;
Expand Down

0 comments on commit dea75aa

Please sign in to comment.