fix(RLS): Fix Info Tooltip + Button Alignment on RLS Modal (#25400)

This commit is contained in:
Corbin Bullard 2023-10-10 13:52:37 -04:00 committed by GitHub
parent d1ba4dc284
commit a6d0e6f37a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -39,10 +39,14 @@ import { FilterType, RLSObject, RoleObject, TableObject } from './types';
const StyledModal = styled(Modal)`
max-width: 1200px;
min-width: min-content;
width: 100%;
.ant-modal-body {
overflow: initial;
}
.ant-modal-footer {
white-space: nowrap;
}
`;
const StyledIcon = (theme: SupersetTheme) => css`
margin: auto ${theme.gridUnit * 2}px auto 0;