Skip to content

Commit

Permalink
[fix] Cardに当たるCSSの統一
Browse files Browse the repository at this point in the history
  • Loading branch information
TkymHrt committed Nov 14, 2024
1 parent 3e575bc commit 520d3d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export default function Home() {
))}
{!isAnsweredAll && todayAssignment && (
<Card
className="flex flex-col items-center justify-around aspect-square w-full p-6 backdrop-blur-sm"
className="flex flex-col items-center justify-around aspect-square w-full p-6"
style={{
background:
"linear-gradient(90deg, rgba(255, 145, 109, 0.56) 0%, rgba(255, 90, 170, 0.44) 51%, rgba(139, 166, 255, 0.61) 100%)",
Expand Down Expand Up @@ -157,7 +157,7 @@ export default function Home() {
</Card>
)}
{isAnsweredAll && (
<Card className="w-full max-w-md bg-white rounded-3xl overflow-hidden">
<Card className="w-full max-w-md bg-white overflow-hidden">
<div className="p-8 text-center">
<LuCheckCircle className="w-20 h-20 text-green-500 mx-auto mb-6" />
<h2 className="text-3xl font-bold mb-4 text-gray-800">
Expand Down

0 comments on commit 520d3d2

Please sign in to comment.