From 56fbcf927503d96fefe8ee53ed18ed3882e46eb9 Mon Sep 17 00:00:00 2001 From: Tessa Kelly Date: Mon, 22 Nov 2021 13:18:27 -0800 Subject: [PATCH] Reduce function wrapping in styles --- src/Nri/Ui/RadioButton/V3.elm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Nri/Ui/RadioButton/V3.elm b/src/Nri/Ui/RadioButton/V3.elm index 093dacf4..24d7641e 100644 --- a/src/Nri/Ui/RadioButton/V3.elm +++ b/src/Nri/Ui/RadioButton/V3.elm @@ -394,13 +394,13 @@ view label attributes = [ Html.span [ css <| if config.hideLabel then - [ Css.width <| px 1 + [ Css.width (px 1) , overflow Css.hidden - , margin <| px -1 - , padding <| px 0 - , border <| px 0 + , margin (px -1) + , padding (px 0) + , border (px 0) , display inlineBlock - , textIndent <| px 1 + , textIndent (px 1) ] else