This is an automated email from the ASF dual-hosted git repository. msyavuz pushed a commit to branch msyavuz/fix/visual-regressions in repository https://gitbox.apache.org/repos/asf/superset.git
commit 55547222b0f02259a8e27d430bcae1ee686c2e13 Author: Mehmet Salih Yavuz <[email protected]> AuthorDate: Wed Apr 30 19:24:49 2025 +0300 fix(Checkbox): padding right for checkbox control --- superset-frontend/src/explore/components/controls/CheckboxControl.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/explore/components/controls/CheckboxControl.jsx b/superset-frontend/src/explore/components/controls/CheckboxControl.jsx index 586a16baa4..e9d3bf3f17 100644 --- a/superset-frontend/src/explore/components/controls/CheckboxControl.jsx +++ b/superset-frontend/src/explore/components/controls/CheckboxControl.jsx @@ -38,7 +38,7 @@ const CheckBoxControlWrapper = styled.div` .ControlHeader label { color: ${theme.colorText}; } - span[role='checkbox'] { + span { padding-right: ${theme.sizeUnit * 2}px; } `}
