fix(docs-backends-overview): overflow table (#5680)

This commit is contained in:
Ammar
2021-08-04 19:36:46 +07:00
committed by GitHub
parent 32dcd888da
commit ad48613652
2 changed files with 3 additions and 1 deletions

View File

@ -78,6 +78,8 @@ const StyledMarkdown = styled.div`
margin-bottom: 40px;
width: 100%;
text-align: left;
display: block;
overflow: auto;
}
tbody tr {

View File

@ -6,7 +6,7 @@ import Page from './page';
import { mq } from '../utils';
const Children = styled.div`
overflow: auto;
overflow: hidden;
padding-left: 2rem;
`;