Skip to content

Commit

Permalink
Fix/home daisy UI (#534)
Browse files Browse the repository at this point in the history
# PRの概要
Cardの表示が壊れていたので修正

## 具体的な変更内容
Homeのコンポーネントのcss(配置)修正

## 影響範囲
とくになし

## 動作要件
とくになし

## 補足
とくになし

## レビューリクエストを出す前にチェック!

- [x] 改めてセルフレビューしたか
- [x] 手動での動作検証を行ったか
- [x] server の機能追加ならば、テストを書いたか
  - 理由: 書いた | server の機能追加ではない
- [x] 間違った使い方が存在するならば、それのドキュメントをコメントで書いたか
  - 理由: 書いた | 間違った使い方は存在しない
- [x] わかりやすいPRになっているか

<!-- レビューリクエスト後は、Slackでもメンションしてお願いすることを推奨します。 -->
  • Loading branch information
GuY8528 authored Nov 30, 2024
1 parent 85673a1 commit 03aff82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/app/home/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default function Home() {
<div className="flex h-full flex-col items-center justify-center">
{nextUser && (
<div className="relative h-full w-full">
<div className="-translate-x-1/2 absolute inset-0 z-0 mt-4 transform">
<div className="-translate-x-4 -translate-y-4 inset-0 z-0 mt-4 transform">
<Card displayedUser={nextUser} />
</div>
<motion.div
Expand All @@ -101,7 +101,7 @@ export default function Home() {
</motion.div>
</div>
)}
<div className="button-container mt-4 mb-4 flex w-full space-x-8">
<div className="button-container mt-4 mb-4 flex w-full justify-center space-x-8">
<RoundButton onclick={onClickCross} icon={<CloseIconStyled />} />
<RoundButton
onclick={onClickHeart}
Expand Down

0 comments on commit 03aff82

Please sign in to comment.