Working with react and material ui, I am facing an issue in positioning a divider close to the bottom of the webpage along with a logo. In my jsx file, I have a functional component utilizing material UI drawer on the left side of the browser, where I have placed the divider:
<Drawer styles={{}}>
... (MaterialUI ListItem Components) ... and then
<Divider />
</Drawer>
I considered using CSS properties like 'bottom' but combining 'position' and 'bottom' does not seem to work as expected.