fix: fixed horizontal scrollbars appearing when dialog is open (#1714)
This commit is contained in:
parent
5e423f4fd3
commit
f2aaf287eb
@ -18,6 +18,10 @@ const agGridDarkVariables = `
|
|||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ag-theme-balham-dark .ag-row {
|
||||||
|
border-width: 1px 0;
|
||||||
|
}
|
||||||
|
|
||||||
.ag-theme-balham-dark .ag-react-container {
|
.ag-theme-balham-dark .ag-react-container {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
@ -4,7 +4,7 @@ import 'ag-grid-community/dist/styles/ag-theme-balham.css';
|
|||||||
|
|
||||||
const agGridLightVariables = `
|
const agGridLightVariables = `
|
||||||
.ag-theme-balham {
|
.ag-theme-balham {
|
||||||
--ag-background-color: ${colors};
|
--ag-background-color: ${colors.white};
|
||||||
--ag-border-color: ${colors.neutral[300]};
|
--ag-border-color: ${colors.neutral[300]};
|
||||||
--ag-header-background-color: ${colors.white};
|
--ag-header-background-color: ${colors.white};
|
||||||
--ag-odd-row-background-color: ${colors.white};
|
--ag-odd-row-background-color: ${colors.white};
|
||||||
@ -18,6 +18,10 @@ const agGridLightVariables = `
|
|||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ag-theme-balham .ag-row {
|
||||||
|
border-width: 1px 0;
|
||||||
|
}
|
||||||
|
|
||||||
.ag-theme-balham .ag-react-container {
|
.ag-theme-balham .ag-react-container {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
Loading…
Reference in New Issue
Block a user