mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-10-04 16:24:07 +00:00
ui: fix align mode of two column container
'stretch' is most often the wrong value, as that will stretch everything, to the height of the whole container, including fields. That is not desirable, since fields look not good when stretched this way (e.g. the controls are not correctly aligned). To fix it, simply set it to 'begin'. Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
d4191941ff
commit
3a9037ba25
@ -10,7 +10,7 @@ Ext.define('PVE.container.TwoColumnContainer', {
|
|||||||
|
|
||||||
layout: {
|
layout: {
|
||||||
type: 'hbox',
|
type: 'hbox',
|
||||||
align: 'stretch',
|
align: 'begin',
|
||||||
},
|
},
|
||||||
|
|
||||||
// The default ratio of the start widget. It an be an integer or a floating point number
|
// The default ratio of the start widget. It an be an integer or a floating point number
|
||||||
|
Loading…
Reference in New Issue
Block a user