From 31c1dc40e36f62c6ad3040c07c2ec1d8ffa0e7a6 Mon Sep 17 00:00:00 2001 From: Phil Dokas Date: Tue, 8 Oct 2019 22:15:49 -0700 Subject: [PATCH] Fix leading for super and subscript in the article view --- Mac/MainWindow/Detail/styleSheet.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Mac/MainWindow/Detail/styleSheet.css b/Mac/MainWindow/Detail/styleSheet.css index ce5ef262e..a98d508e1 100644 --- a/Mac/MainWindow/Detail/styleSheet.css +++ b/Mac/MainWindow/Detail/styleSheet.css @@ -140,6 +140,18 @@ figcaption { line-height: 1.3em; } +sup { + vertical-align: top; + position: relative; + bottom: 0.2rem; +} + +sub { + vertical-align: bottom; + position: relative; + top: 0.2rem; +} + .iframeWrap { position: relative; display: block;