diff --git a/src/shared/versions.js b/src/shared/versions.js index b8f0d0c..4b28d32 100644 --- a/src/shared/versions.js +++ b/src/shared/versions.js @@ -1,6 +1,6 @@ export const HARBOR_VERSIONS = Object.freeze({ - macClient: '0.7.15', - gatewayClient: '0.7.15', + macClient: '0.7.16', + gatewayClient: '0.7.16', gatewayBackend: '0.7.1', }); diff --git a/src/web/styles.css b/src/web/styles.css index 55cb872..48acc2d 100644 --- a/src/web/styles.css +++ b/src/web/styles.css @@ -2068,6 +2068,7 @@ p { .client-form-content { display: grid; + align-content: start; gap: 36px; opacity: 1; filter: blur(0); diff --git a/test/web/responsive-layout-contract.test.js b/test/web/responsive-layout-contract.test.js index 74417f0..1c973a6 100644 --- a/test/web/responsive-layout-contract.test.js +++ b/test/web/responsive-layout-contract.test.js @@ -22,6 +22,7 @@ test('desktop layout keeps the power control on a symmetric center axis', () => assert.match(form, /position:\s*static/); assert.doesNotMatch(form, /\bleft\s*:|translateX|transition:[^;]*(?:left|width|transform)/); assert.match(styles, /\.client-panel\.has-subscription \.client-form \{[\s\S]*height:\s*min\(640px, calc\(100vh - 120px\)\)/); + assert.match(rule('.client-form-content'), /align-content:\s*start/); }); test('tablet and mobile regions use normal flow with viewport-safe widths', () => {