fix markdown css (#3341)

* fix markdown css

* changelog

* cleanup

---------

Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
This commit is contained in:
pngwn 2023-02-28 10:26:00 +00:00 committed by GitHub
parent 9682bc82db
commit d39c62a7f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 1 deletions

View File

@ -3,6 +3,7 @@
## Bug fixes
- Fix bug that cause UI to be vertically centered at all times by [@pngwn](https://github.com/pngwn) in [PR 3336](https://github.com/gradio-app/gradio/pull/3336)
- Ensure markdown lists are rendered correctly by [@pngwn](https://github.com/pngwn) in [PR 3341](https://github.com/gradio-app/gradio/pull/3341)
## New Features:

View File

@ -177,7 +177,6 @@ ul,
menu {
margin: 0;
padding: 0;
list-style: none;
}
textarea {

View File

@ -86,6 +86,11 @@
.prose ol {
list-style: decimal inside;
}
.prose ul > p,
.prose li > p {
display: inline-block;
}
.prose ol,
.prose ul {
margin-top: 0;