fix(client): pagination dropdown menu is blocked #398

This commit is contained in:
chenos 2022-05-20 13:35:56 +08:00
parent 14ad04a8b2
commit 8a26b8dd77
2 changed files with 6 additions and 1 deletions

View File

@ -16,7 +16,7 @@ export const PoweredBy = () => {
a {
color: rgba(0, 0, 0, 0.45);
&:hover {
color: rgba(0,0,0,.85);
color: rgba(0, 0, 0, 0.85);
}
}
`}

View File

@ -163,11 +163,16 @@ const InternalAdminLayout = (props: any) => {
min-height: calc(100vh - 46px);
position: relative;
padding-bottom: 70px;
> div {
position: relative;
z-index: 1;
}
.ant-layout-footer {
position: absolute;
bottom: 0;
text-align: center;
width: 100%;
z-index: 0;
}
`}
>