Does anyone know is it possible to change Ag Grid component border color?
I was trying to do remove it with styling ag-theme-alphine
<div className="ag-theme-alpine" style={{ height: '100%', borderColor: 'white', fontSize: '1vw',}}>
But it doesn't work at all. Also i tried to do it with css, but again no luck.
.ag-root-wrapper {
border: solid 1px;
border-color: red;
border-color: var(--ag-border-color, #babfc7);
}