0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 22:52:40 +00:00

Give editor highlighting sub/superscript alignment

This commit is contained in:
Trevor Buckner
2023-12-04 21:54:44 -05:00
parent 8d94e5fbe0
commit ddef21cd7e

View File

@@ -44,12 +44,16 @@
color : green;
}
.superscript:not(.cm-comment) {
font-weight : bold;
color : goldenrod;
font-weight : bold;
color : goldenrod;
vertical-align : super;
font-size : 0.9em;
}
.subscript:not(.cm-comment) {
font-weight : bold;
color : rgb(123, 123, 15);
font-weight : bold;
color : rgb(123, 123, 15);
vertical-align : sub;
font-size : 0.9em;
}
}