fix: responsiveness

This commit is contained in:
grngxd 2025-06-10 14:49:39 +01:00
parent cf9f2181e9
commit 68b13ab5c2
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@ export default component$(() => {
}
})
return (
<div class="z-[999999999] fixed bottom-4 left-1/2 transform -translate-x-1/2 bg-neutral-700/10 backdrop-blur-3xl w-1/3 p-2 pr-4 rounded-lg flex items-center justify-between">
<div class="z-[999999999] fixed bottom-4 left-1/2 transform -translate-x-1/2 bg-neutral-700/10 backdrop-blur-3xl lg:w-1/3 md:w-2/3 w-4/5 p-2 pr-4 rounded-lg flex items-center justify-between">
<input
type="file"
ref={fileInputRef}

View file

@ -55,7 +55,7 @@ export default component$(() => {
</div>
)
: (
<div class="grid grid-cols-4 gap-3 p-6 mb-14">
<div class="grid xl:grid-cols-4 md:grid-cols-3 sm:grid-cols-2 grid-cols-1 gap-3 p-6 mb-14">
{files.value.map((file) => (
<File key={file.Name} file={file} />
))}