Fix Inline Code display issue on Light/Dark themes

This commit is contained in:
jsonMartin
2021-09-05 00:21:42 -07:00
parent 1d19cd0d6c
commit f59396bcac

View File

@@ -21,6 +21,19 @@
.dark-mode .notion code {
color: rgba(229, 231, 235, 1);
}
.dark-mode .notion .notion-inline-code {
background: rgb(71,76,80) !important;
color: #ff4081;
padding: .2em .4em !important;
}
.light-mode .notion .notion-inline-code {
color: #ff4081;
background: rgba(55,53,47, .1) !important;
padding: .2em .4em !important;
}
.token.cdata,
.token.doctype,
.token.prolog {