This repository was archived by the owner on Jul 29, 2025. It is now read-only.

Description
The Top App bar combined with a Navigation drawer (dismissible). Has a bug where it overlays the Top App bar.
A simple fix is to remove the top: 0; line in the css (or overwrite it):
.mdc-drawer--dismissible {
...
top: 0;
}
This might trigger some unwanted behavior in other cases, that is why I'm reporting it here.
Nested as:
<TopAppBar .../>
<TopAppBarFixedAdjust>
<Drawer dismissible>
...menu...
</Drawer>
<DrawerAppContent>
...page...
</DrawerAppContent>
</TopAppBarFixedAdjust>
Default behavior:

Expected behavior: (after removing top: 0;)
