diff --git a/app/View/Components/Form/Group/File.php b/app/View/Components/Form/Group/File.php index a9f34754d..46e4dea91 100644 --- a/app/View/Components/Form/Group/File.php +++ b/app/View/Components/Form/Group/File.php @@ -11,7 +11,7 @@ class File extends Form public $formGroupClass = 'sm:col-span-3'; public $custom_attributes = [ - 'dropzone-class' => 'form-file dropzone-column w-1/2 h-32.5', + 'dropzone-class' => 'form-file dropzone-column sm:w-1/2 h-32.5', ]; /** diff --git a/public/css/app.css b/public/css/app.css index c907379ff..be74e7f9d 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -51017,6 +51017,10 @@ body{ width: 500px; } + .sm\:w-1\/2{ + width: 50%; + } + .sm\:w-6\/12{ width: 50%; } @@ -51049,6 +51053,10 @@ body{ width: 24rem; } + .sm\:w-37{ + width: 9.25rem; + } + .sm\:w-60{ width: 15rem; } @@ -51494,6 +51502,10 @@ body{ justify-content: space-around; } + .lg\:gap-8{ + gap: 2rem; + } + .lg\:gap-16{ gap: 4rem; } diff --git a/resources/assets/js/components/AkauntingDropzoneFileUpload.vue b/resources/assets/js/components/AkauntingDropzoneFileUpload.vue index 8343afe4d..27128d909 100644 --- a/resources/assets/js/components/AkauntingDropzoneFileUpload.vue +++ b/resources/assets/js/components/AkauntingDropzoneFileUpload.vue @@ -1,5 +1,5 @@