diff options
author | Manuel Bojato <30560560+KingDarBoja@users.noreply.github.com> | 2020-06-27 16:36:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-27 23:36:31 +0200 |
commit | 22f1b5120e6ea1b182185e31b2744fc3cd39cd6e (patch) | |
tree | aae58c866b2a4b1cba1d944aea38ca840c27efe2 | |
parent | ad00d616e8ed3dc3e7b1e8fb4a8681e5b4eca0e8 (diff) | |
download | Nim-22f1b5120e6ea1b182185e31b2744fc3cd39cd6e.tar.gz |
Fix nimdoc invalid css on theme switch class (#14834)
-rw-r--r-- | doc/nimdoc.css | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/nimdoc.css b/doc/nimdoc.css index 72b6734ab..6025d6601 100644 --- a/doc/nimdoc.css +++ b/doc/nimdoc.css @@ -63,12 +63,13 @@ Modified by Boyd Greenfield and narimiran .theme-switch-wrapper { display: flex; align-items: center; +} - em { - margin-left: 10px; - font-size: 1rem; - } +.theme-switch-wrapper em { + margin-left: 10px; + font-size: 1rem; } + .theme-switch { display: inline-block; height: 22px; |