Add bottom margin to spans in hovers (#107442)

Fixes #101496
This commit is contained in:
Alex Ross
2020-09-28 11:35:23 +02:00
committed by GitHub
parent 84afb9f045
commit b7d2879695

View File

@@ -131,3 +131,9 @@
border-bottom: 1px solid transparent;
text-underline-position: under;
}
/** Spans in markdown hovers need a margin-bottom to avoid looking cramped: https://github.com/microsoft/vscode/issues/101496 **/
.monaco-hover .markdown-hover .hover-contents span {
margin-bottom: 4px;
display: inline-block;
}