I am using the react-scrollbar library which contains demos here.
I am trying to figure out how to increase the size of the scrollbar but am having difficulties
import React, { Component } from 'react';
import { Scrollbars } from 'react-custom-scrollbars';
export default class App extends Component {
render() {
return (
<Scrollbars
style={{ width: 300 }}>
<p>Lorem ipsum dolor justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p>
<p>Lorem consetetur</p>
<p>Lorem ipsum anctus est Lorem ipsum dolor sit amet.</p>
</Scrollbars>
);
}
}
width here changes the width of the actually div and not the scrollbar.
Does anyone know how to increase the width of the actual scrollbar?