You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[`@media screen and (max-width: ${componentTheme.stackedOrInlineBreakpoint})`]:
88
-
{
89
-
...(inlineContainerAndLabel&&{
90
-
textAlign: 'start'
91
-
})
92
-
}
93
-
})
86
+
...(inlineContainerAndLabel&&{
87
+
paddingLeft: componentTheme.inlinePadding,
88
+
paddingRight: componentTheme.inlinePadding
89
+
}),
90
+
[`@media screen and (max-width: ${componentTheme.stackedOrInlineBreakpoint})`]:
91
+
{
92
+
...(inlineContainerAndLabel&&{
93
+
textAlign: 'start'
94
+
})
95
+
}
94
96
}
95
97
96
98
return{
@@ -135,10 +137,12 @@ const generateStyle = (
135
137
},
136
138
formFieldLabel: {
137
139
label: 'formFieldLayout__label',
138
-
...labelStyles,
139
-
// NOTE: needs separate groups for `:is()` and `:-webkit-any()` because of css selector group validation (see https://www.w3.org/TR/selectors-3/#grouping)
140
-
'&:is(label)': labelStyles,
141
-
'&:-webkit-any(label)': labelStyles
140
+
...(hasVisibleLabel&&{
141
+
...labelStyles,
142
+
// NOTE: needs separate groups for `:is()` and `:-webkit-any()` because of css selector group validation (see https://www.w3.org/TR/selectors-3/#grouping)
0 commit comments