Merge pull request #1061 from Its-treason/bugfix/docs-table-styles

fix(RequestPane): Fix Mardown Table styling
This commit is contained in:
Anoop M D 2023-11-29 23:53:02 +05:30 committed by GitHub
commit e31b601cef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,6 +71,14 @@ const StyledMarkdownBodyWrapper = styled.div`
pre {
background: ${(props) => props.theme.sidebar.bg};
}
table {
th,
td {
border: 1px solid ${(props) => props.theme.table.border};
background-color: ${(props) => props.theme.bg};
}
}
}
@media (max-width: 767px) {