Browse Source

fix/removed redundant css class names

pull/3021/head
Muhammed Mustafa 2 years ago
parent
commit
e5318f9b32
  1. 4
      packages/nc-gui-v2/components/smartsheet/Gallery.vue

4
packages/nc-gui-v2/components/smartsheet/Gallery.vue

@ -58,8 +58,8 @@ const attachments = (record: any): Array<Attachment> => {
<!-- TODO: Fix scrolling --> <!-- TODO: Fix scrolling -->
<template> <template>
<div class="flex flex-col h-100 min-h-0 w-100"> <div class="flex flex-col h-full min-h-0 w-full">
<div class="nc-gallery-container min-h-0 flex-1 grid grid-cols-4 gap-x-4 gap-y-4 my-4 px-3"> <div class="nc-gallery-container min-h-0 flex-1 grid grid-cols-4 gap-4 my-4 px-3">
<div v-for="(record, recordIndex) in data" :key="recordIndex" class="flex flex-col"> <div v-for="(record, recordIndex) in data" :key="recordIndex" class="flex flex-col">
<a-card hoverable class="!rounded-lg h-full"> <a-card hoverable class="!rounded-lg h-full">
<template #cover> <template #cover>

Loading…
Cancel
Save