fix: fixed horizontal scrollbars appearing when dialog is open (#1714)

This commit is contained in:
Art
2022-10-11 21:07:17 +02:00
committed by GitHub
parent 5e423f4fd3
commit f2aaf287eb
2 changed files with 9 additions and 1 deletions
@@ -17,6 +17,10 @@ const agGridDarkVariables = `
.ag-theme-balham-dark .ag-root-wrapper {
border: 0;
}
.ag-theme-balham-dark .ag-row {
border-width: 1px 0;
}
.ag-theme-balham-dark .ag-react-container {
overflow: hidden;
@@ -4,7 +4,7 @@ import 'ag-grid-community/dist/styles/ag-theme-balham.css';
const agGridLightVariables = `
.ag-theme-balham {
--ag-background-color: ${colors};
--ag-background-color: ${colors.white};
--ag-border-color: ${colors.neutral[300]};
--ag-header-background-color: ${colors.white};
--ag-odd-row-background-color: ${colors.white};
@@ -18,6 +18,10 @@ const agGridLightVariables = `
border: 0;
}
.ag-theme-balham .ag-row {
border-width: 1px 0;
}
.ag-theme-balham .ag-react-container {
overflow: hidden;
text-overflow: ellipsis;