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 b1101c75c..79b46add8 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -51016,6 +51016,10 @@ body{ display: none; } + .sm\:min-h-500{ + min-height: 500px; + } + .sm\:w-500{ width: 500px; } @@ -51052,6 +51056,10 @@ body{ width: 24rem; } + .sm\:w-37{ + width: 9.25rem; + } + .sm\:w-60{ width: 15rem; } @@ -51282,6 +51290,12 @@ body{ display: flex; } + .lg\:inline-flex{ + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + } + .lg\:hidden{ display: none; } @@ -51501,6 +51515,10 @@ body{ gap: 4rem; } + .lg\:gap-8{ + gap: 2rem; + } + .lg\:space-x-16 > :not([hidden]) ~ :not([hidden]){ --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); @@ -51582,6 +51600,10 @@ body{ padding-left: 1.5rem; } + .lg\:pr-12{ + padding-right: 3rem; + } + .lg\:pl-12{ padding-left: 3rem; } 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 @@