summaryrefslogtreecommitdiff
path: root/lib/avl/table/avl-registration-area.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/avl/table/avl-registration-area.tsx')
-rw-r--r--lib/avl/table/avl-registration-area.tsx9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/avl/table/avl-registration-area.tsx b/lib/avl/table/avl-registration-area.tsx
index 52912a2c..ba1c76d4 100644
--- a/lib/avl/table/avl-registration-area.tsx
+++ b/lib/avl/table/avl-registration-area.tsx
@@ -1,7 +1,6 @@
"use client"
import * as React from "react"
-import { Card } from "@/components/ui/card"
import { Button } from "@/components/ui/button"
import { ChevronLeft, ChevronRight, ChevronsLeft, ChevronsRight } from "lucide-react"
import { useAtom } from "jotai"
@@ -430,9 +429,9 @@ export function AvlRegistrationArea({ disabled = false }: AvlRegistrationAreaPro
}, [selectedTable, selectedRowCount, getSelectedIds, session])
return (
- <Card className={`h-full min-w-full overflow-visible ${disabled ? 'opacity-50 pointer-events-none' : ''}`}>
+ <div className={`min-w-full overflow-hidden rounded-md bg-background ${disabled ? 'opacity-50 pointer-events-none' : ''}`}>
{/* 고정 헤더 영역 */}
- <div className="sticky top-0 z-10 p-4 border-b">
+ <div className="sticky top-0 z-10 p-4 border-b bg-background">
<div className="flex items-center justify-between">
<h3 className="text-lg font-semibold">AVL 등록 {disabled ? "(비활성화)" : ""}</h3>
<div className="flex gap-2">
@@ -444,7 +443,7 @@ export function AvlRegistrationArea({ disabled = false }: AvlRegistrationAreaPro
</div>
{/* 스크롤되는 콘텐츠 영역 */}
- <div className="overflow-x-auto overflow-y-hidden">
+ <div className="overflow-x-auto mb-8">
<div className="grid grid-cols-[2.2fr_2fr_2.5fr] gap-0 min-w-[1200px] w-fit">
{/* 프로젝트 AVL 테이블 - 9개 컬럼 */}
<div className="p-4 border-r relative">
@@ -563,6 +562,6 @@ export function AvlRegistrationArea({ disabled = false }: AvlRegistrationAreaPro
</div>
</div>
</div>
- </Card>
+ </div>
)
}