fix(RequestPane): Fix Mardown Table styling

This commit is contained in:
Its-treason 2023-11-26 22:41:30 +01:00
parent fad71e936c
commit 6a55a8d6ea

View File

@ -71,6 +71,14 @@ const StyledMarkdownBodyWrapper = styled.div`
pre { pre {
background: ${(props) => props.theme.sidebar.bg}; 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) { @media (max-width: 767px) {