From 7f217d04bbc7109f232b430540291fa661fee9ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodriguez=20Feit=C3=B3?= Date: Wed, 17 Aug 2022 19:27:58 -0300 Subject: [PATCH] fix: add missing semicolon to labelText styles (#2444) --- src/components/Input/label/labelText.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Input/label/labelText.js b/src/components/Input/label/labelText.js index bcab3a419..9f7f4f7e8 100644 --- a/src/components/Input/label/labelText.js +++ b/src/components/Input/label/labelText.js @@ -54,7 +54,7 @@ const Label = attachThemeAttrs(styled.label).attrs(props => { Object.prototype.hasOwnProperty.call(labelAlignmentMap, props.labelAlignment) ? props.labelAlignment : 'center' - } + }; margin-left: 0; margin-right: 0; padding: 0 ${PADDING_MEDIUM};