Browse Source

chore: icon size change

pull/8990/head
Raju Udava 4 months ago committed by DarkPhoenix2704
parent
commit
3847f14cb6
No known key found for this signature in database
GPG Key ID: 3F76B10622A07849
  1. 6
      packages/nc-gui/components/cell/attachment/UploadProviders/Local.vue

6
packages/nc-gui/components/cell/attachment/UploadProviders/Local.vue

@ -113,9 +113,9 @@ onBeforeUnmount(() => {
class="flex flex-col items-center justify-center h-full w-full flex-grow-1 rounded-lg"
@click="tempFiles.length > 0 ? () => {} : open()"
>
<div v-if="!tempFiles.length" class="flex cursor-pointer items-center justify-center flex-col gap-2">
<div v-if="!tempFiles.length" class="flex cursor-pointer items-center justify-center flex-col gap-4">
<template v-if="!isOverDropZone">
<component :is="iconMap.upload" class="w-6 h-6" />
<component :is="iconMap.upload" class="w-8 h-8 text-gray-500" />
<h1>
{{ $t('labels.clickTo') }}
@ -127,7 +127,7 @@ onBeforeUnmount(() => {
</h1>
</template>
<template v-if="isOverDropZone">
<component :is="iconMap.upload" class="w-5 text-brand-500 h-5" />
<component :is="iconMap.upload" class="w-8 text-brand-500 h-8" />
<h1 class="text-brand-500 font-bold">{{ $t('labels.dropHere') }}</h1>
</template>
</div>

Loading…
Cancel
Save