feat: adjust the sidebar width to 800px
This commit is contained in:
parent
c35dacf64c
commit
4734c809d7
|
|
@ -181,7 +181,7 @@ export function StepDetailPanel({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Sheet open={isOpen} onOpenChange={onClose}>
|
<Sheet open={isOpen} onOpenChange={onClose}>
|
||||||
<SheetContent key={step?.id} className="w-[600px] sm:max-w-[600px] overflow-hidden">
|
<SheetContent key={step?.id} className="w-[800px] sm:max-w-[800px] overflow-hidden">
|
||||||
<SheetHeader className="px-6">
|
<SheetHeader className="px-6">
|
||||||
<div className="flex items-start justify-between">
|
<div className="flex items-start justify-between">
|
||||||
<div>
|
<div>
|
||||||
|
|
@ -197,9 +197,9 @@ export function StepDetailPanel({
|
||||||
</div>
|
</div>
|
||||||
</SheetHeader>
|
</SheetHeader>
|
||||||
|
|
||||||
<div style={{ width: '552px', maxWidth: '552px' }}>
|
<div style={{ width: '752px', maxWidth: '752px' }}>
|
||||||
<ScrollArea className="h-[calc(100vh-180px)] mt-6 px-6 w-full">
|
<ScrollArea className="h-[calc(100vh-180px)] mt-6 px-6 w-full">
|
||||||
<div className="space-y-6" style={{ width: '504px', maxWidth: '504px' }}>
|
<div className="space-y-6" style={{ width: '704px', maxWidth: '704px' }}>
|
||||||
{/* Status & Type */}
|
{/* Status & Type */}
|
||||||
<div className="flex items-center gap-4">
|
<div className="flex items-center gap-4">
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue