Skip to content

Commit f78b876

Browse files
committed
fixed upload component
1 parent 2b1098c commit f78b876

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/classrooms/[classroomId]/upload/uploadComponent.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export default function UploadComponent({
145145

146146
return (
147147
<div className="flex min-h-screen flex-col items-center justify-center p-6">
148-
<Card className="w-full max-w-[35vw]">
148+
<Card className="w-[95vw] min-[925px]:w-[35vw]">
149149
<CardHeader>
150150
<CardTitle>File Upload</CardTitle>
151151
</CardHeader>
@@ -154,8 +154,8 @@ export default function UploadComponent({
154154
<div className="flex items-center space-x-4">
155155
<Skeleton className="h-12 w-12 rounded-full" />
156156
<div className="space-y-2">
157-
<Skeleton className="h-4 w-[250px]" />
158-
<Skeleton className="h-4 w-[200px]" />
157+
<Skeleton className="h-4 w-[30vw]" />
158+
<Skeleton className="h-4 w-[25vw]" />
159159
</div>
160160
</div>
161161
) : (

0 commit comments

Comments
 (0)