From 8c3d714f33f60f1fccaae7d91fdc786b2815d38c Mon Sep 17 00:00:00 2001 From: Awilum Date: Wed, 5 Feb 2020 22:19:47 +0300 Subject: [PATCH] feat(core): Forms API updates styles #211 --- flextype/core/Forms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flextype/core/Forms.php b/flextype/core/Forms.php index ad648eea..d929bc71 100644 --- a/flextype/core/Forms.php +++ b/flextype/core/Forms.php @@ -410,7 +410,7 @@ class Forms $attributes = isset($properties['attributes']) ? $properties['attributes'] : []; $attributes['id'] = isset($attributes['id']) ? $attributes['id'] : $field_id; - $attributes['class'] = isset($attributes['class']) ? $attributes['class'] : ''; + $attributes['class'] = isset($attributes['class']) ? $attributes['class'] . 'text-3xl border-b border-black' : 'text-3xl border-b border-black'; $field = '
'; $field .= Html::heading(__($title), $h, $attributes);