Implemented full-screen layout

This commit is contained in:
Atharva Sawant
2024-03-28 15:42:19 +05:30
parent ce53a54dc5
commit 19f4116318
4 changed files with 69 additions and 19 deletions

View File

@@ -12,8 +12,8 @@
<div class="space-y-3">
<p class="text-lg text-gray-600">Drop org files or folders here</p>
<p class="text-sm text-gray-400">or</p>
<div class="flex gap-3 justify-center">
<label class="inline-block">
<div class="flex gap-3 justify-center items-center">
<label>
<input
type="file"
multiple
@@ -21,13 +21,13 @@
@change="handleFileSelect"
class="hidden"
/>
<span class="bg-blue-600 text-white px-4 py-2 rounded cursor-pointer hover:bg-blue-700">
<span class="inline-block bg-blue-600 text-white px-4 py-2 rounded cursor-pointer hover:bg-blue-700 transition-colors">
Browse Files
</span>
</label>
<button
@click="loadExampleFiles"
class="bg-green-600 text-white px-4 py-2 rounded hover:bg-green-700"
class="bg-green-600 text-white px-4 py-2 rounded hover:bg-green-700 transition-colors"
>
Use Example Files
</button>