Fix the whitespace after everything which is link

This commit is contained in:
Soumesh Banerjee 2019-12-18 13:11:54 +08:00 committed by Angus Gratton
parent 4325c98a27
commit e969115a23

View file

@ -41,6 +41,12 @@ a:hover {
width: 240px !important;
}
a.internal::after{
/* For space between the return type and function name */
a.internal + code.descname::before {
content: ' ';
}
/* For space between the arguments of the function */
a.internal + em::before {
content: ' ';
}