From 6e011db34039e606e467ef3b28af13aac6d2e0e3 Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Mon, 13 Sep 2021 02:45:51 +0200 Subject: [PATCH] Fix some small layout issues --- UI/Input/ValidatedTextField.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/Input/ValidatedTextField.ts b/UI/Input/ValidatedTextField.ts index 17a67de14f..b054350f76 100644 --- a/UI/Input/ValidatedTextField.ts +++ b/UI/Input/ValidatedTextField.ts @@ -411,11 +411,11 @@ export default class ValidatedTextField { mapBackgroundLayer: options.mapBackgroundLayer, args: options.args, feature: options.feature - }) + }).SetClass("block") input = new CombinedInputElement(input, helper, (a, _) => a, // We can ignore b, as they are linked earlier a => [a, a] - ); + ).SetClass("block w-full"); } return input; }