Browse Source

fix: Horizontal scroll bar of Kanban View not visible #7210

pull/7218/head
Ramesh Mane 9 months ago
parent
commit
3b969abb4a
  1. 6
      packages/nc-gui/components/smartsheet/Kanban.vue

6
packages/nc-gui/components/smartsheet/Kanban.vue

@ -402,10 +402,10 @@ const getRowId = (row: RowType) => {
>
<div
ref="kanbanContainerRef"
class="nc-kanban-container flex mt-4 pb-4 px-4 overflow-y-hidden w-full nc-scrollbar-x-md"
class="nc-kanban-container flex mt-4 pb-4 px-4 overflow-y-hidden w-full nc-scrollbar-x-lg"
:style="{
minHeight: 'calc(100vh - var(--topbar-height) - 3.5rem)',
maxHeight: 'calc(100vh - var(--topbar-height) - 3.5rem)',
minHeight: 'calc(100vh - var(--topbar-height) - 4.1rem)',
maxHeight: 'calc(100vh - var(--topbar-height) - 4.1rem)',
}"
>
<div v-if="isViewDataLoading" class="flex flex-row min-h-full gap-x-2">

Loading…
Cancel
Save