Align client panel desktop spacing and bump Harbor versions
All checks were successful
Build and Deploy Gateway / build-and-push (push) Successful in 14s
Build and Deploy Gateway / deploy (push) Successful in 7s

This commit is contained in:
2026-07-12 14:58:55 +03:00
parent e8c1c9d403
commit 77eaed8d90
3 changed files with 21 additions and 6 deletions

View File

@@ -1681,7 +1681,7 @@ p {
}
.client-panel.has-subscription .client-form {
height: min(640px, calc(100vh - 120px));
height: var(--client-work-height);
}
.client-power-section p {
@@ -2076,8 +2076,21 @@ p {
}
@media (min-width: 921px) {
.client-panel.has-subscription {
--client-work-height: min(640px, calc(100vh - 120px));
--client-power-top: calc((var(--client-work-height) - 96px) / 2);
}
.client-panel.has-subscription .client-power-section {
align-self: center;
align-content: start;
box-sizing: border-box;
height: var(--client-work-height);
padding-top: var(--client-power-top);
}
.client-panel.has-subscription .client-form-content {
padding-top: 36px;
padding-top: var(--client-power-top);
}
}