CreateImageWizard: set azure field length to 50% width

Azure form fields only need to take in 36 characters for the ID so they
don't need to take up the full width of the wizard. These fields are
now 50% width. The resource group doesn't have the same character limit
but is set to the same 50% for visual consistency.
This commit is contained in:
Jacob Kozol 2022-02-25 11:53:32 +01:00 committed by Lucas Garfield
parent 0ff6515e11
commit 1a6938ef1f

View file

@ -46,6 +46,7 @@ export default {
{
component: componentTypes.TEXT_FIELD,
name: 'azure-tenant-id',
className: 'pf-u-w-50',
'data-testid': 'azure-tenant-id',
type: 'text',
label: 'Tenant GUID',
@ -72,6 +73,7 @@ export default {
{
component: componentTypes.TEXT_FIELD,
name: 'azure-subscription-id',
className: 'pf-u-w-50',
'data-testid': 'azure-subscription-id',
type: 'text',
label: 'Subscription GUID',
@ -90,6 +92,7 @@ export default {
{
component: componentTypes.TEXT_FIELD,
name: 'azure-resource-group',
className: 'pf-u-w-50',
'data-testid': 'azure-resource-group',
type: 'text',
label: 'Resource group',