This is an automated email from the ASF dual-hosted git repository. enzomartellucci pushed a commit to branch enxdev/fix/save-dataset-modal in repository https://gitbox.apache.org/repos/asf/superset.git
commit be24fb5fe0277859f34bf0329333fe863999b4bd Author: Enzo Martellucci <[email protected]> AuthorDate: Tue Feb 11 15:27:41 2025 +0100 fix(save dataset modal): repairs field alignment in the SaveDatasetModal component modal --- .../src/SqlLab/components/SaveDatasetModal/index.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx b/superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx index 379b0726ac..696df3791e 100644 --- a/superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx +++ b/superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx @@ -100,19 +100,23 @@ const Styles = styled.div` margin: 0 8px; } .sdm-input { - margin-left: 45px; + margin-left: 40px; width: 401px; } .sdm-autocomplete { width: 401px; align-self: center; + margin-left: 4px; } .sdm-radio { - display: block; height: 30px; margin: 10px 0px; line-height: 30px; } + .sdm-radio span { + display: inline-flex; + padding-right: 0px; + } .sdm-overwrite-msg { margin: 7px; }
