Twenty Sixteen: Fix superscript and subscript.

When using the block-based editor in Twenty Sixteen, superscript is displaying below the baseline and subscript is displaying above the baseline. This is the opposite of what should occur. This reverses the two to display correctly.

Props greg-raven, torontodigits, JDTrower.

Merges [44210] into trunk.

Fixes: #44776.

git-svn-id: https://develop.svn.wordpress.org/trunk@44311 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jonathan Desrosiers 2018-12-18 23:11:25 +00:00
parent 0f349bd621
commit 77b797073f

View File

@ -223,11 +223,11 @@ sub {
vertical-align: baseline;
}
sub {
sup {
top: -6px;
}
sup {
sub {
bottom: -3px;
}