Fix bullet list styling on Read Me tab with proper bullets and reduced line spacing

This commit is contained in:
Marcus Quinn
2025-03-24 22:15:57 +00:00
parent 9cd079206f
commit 5a28089043

View File

@ -1013,4 +1013,17 @@ body.wp-admin .button.pricing-button:hover,
margin: 0 auto; margin: 0 auto;
padding: 20px; padding: 20px;
} }
}
/* Readme bullet list styling */
#readme .wp-allstars-markdown-content ul {
list-style-type: disc;
padding-left: 20px;
margin: 10px 0;
}
#readme .wp-allstars-markdown-content li {
margin-bottom: 6px;
line-height: 1.4;
display: list-item;
} }