Fix: Matching Brackets pair not highlighting (#4440)

Co-authored-by: smtalha682 <smtalha682@gmail.com>
This commit is contained in:
S.M.TALHA
2025-04-04 20:17:55 +05:30
committed by GitHub
parent 265b0114e4
commit cd3c66cb14

View File

@@ -102,6 +102,13 @@ const StyledWrapper = styled.div`
.cm-s-default span.cm-variable {
color: #397d13 !important;
}
//matching bracket fix
.CodeMirror-matchingbracket {
background: #5cc0b48c !important;
text-decoration:unset;
}
`;
export default StyledWrapper;