Merge pull request 'feat' (#8) from feat into main
Some checks failed
CI / build-and-test (push) Has been cancelled
Deploy to Server / deploy (push) Has been cancelled
Build Docker Image / build (push) Has been cancelled

Reviewed-on: #8
This commit was merged in pull request #8.
This commit is contained in:
ssa
2026-02-20 16:29:37 +03:00
2 changed files with 8 additions and 8 deletions

View File

@@ -98,7 +98,7 @@ function App() {
return (
<div className="min-h-screen bg-gradient-to-br from-slate-50 to-slate-100">
<main className="container mx-auto px-4 py-6 max-w-7xl">
<main className="container mx-auto px-4 py-6 max-w-[1920px]">
{/* Header */}
<div className="mb-6">
<FileChooser
@@ -113,8 +113,8 @@ function App() {
{envs.length > 0 ? (
<div className="grid grid-cols-1 lg:grid-cols-12 gap-6">
{/* Environment Panel */}
<section className="lg:col-span-5 xl:col-span-4">
{/* Environment Panel - 5/12 width */}
<section className="lg:col-span-5 xl:col-span-5 2xl:col-span-5">
<div className="sticky top-6">
<Environment
envs={envs}
@@ -126,8 +126,8 @@ function App() {
</div>
</section>
{/* Content Panel */}
<section className="lg:col-span-7 xl:col-span-8">
{/* Content Panel - 7/12 width */}
<section className="lg:col-span-7 xl:col-span-7 2xl:col-span-7">
<Content
env={currentEnv}
config={config}

View File

@@ -48,7 +48,7 @@ export function EnvironmentParam({ param, onChanged, isNew }: EnvironmentParamPr
return (
<div
className={`
grid grid-cols-12 gap-2 p-2 rounded-lg transition-all duration-200
grid grid-cols-12 gap-1 p-1 rounded-lg transition-all duration-200
${isChangedClass}
${focusedClass ? 'bg-blue-50' : 'bg-white'}
hover:bg-slate-50
@@ -65,7 +65,7 @@ export function EnvironmentParam({ param, onChanged, isNew }: EnvironmentParamPr
className="text-sm"
/>
</div>
<div className="col-span-7">
<Input
value={localParam.value ?? ''}
@@ -77,7 +77,7 @@ export function EnvironmentParam({ param, onChanged, isNew }: EnvironmentParamPr
className="text-sm"
/>
</div>
<div className="col-span-1 flex items-center justify-center">
{isNew ? (
<Button