IMPROVE the fix for sidebar overlapping bottombar

This commit is contained in:
Norbert de Langen 2019-12-21 13:47:36 +01:00
parent a4429457c6
commit 75a57a284e
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
2 changed files with 1 additions and 7 deletions

View File

@ -2,10 +2,4 @@
#manager-head-not-loaded {
display: none;
}
@media (hover: none) {
div > div > div > ul {
padding-bottom: 80px !important;
}
}
</style>

View File

@ -13,7 +13,7 @@ const Heading = styled(SidebarHeading)<SidebarHeadingProps>({
const Stories = styled(({ className, ...rest }) => (
<SidebarStories className={className} {...rest} />
))(({ loading }) => (loading ? { marginTop: 8 } : {}));
))(({ loading }) => (loading ? { marginTop: 8, overflow: 'hidden' } : { overflow: 'hidden' }));
const Container = styled.nav({
position: 'absolute',