Not sure if this is already an issue as I didn't scroll through them all, but an error I noticed consistently for every theme is that the beginning of whatever you print gets cut off as seen below.

I only see this issue for some fonts (e.g. anka, anonymous), while others (e.g. aurulent, hack) are fine.
I am having the exact same issue.
Your suggested workaround (changing the font) doesn't seem to work on my machine.
I'm also have this problem.Is there any solution to solve?
replace the current div.output_area with the following in the custom css file
div.output_area {
display: -webkit-box;
padding: 13px;
}
thanks, @souravehossain that worked!!!
I had a hard time following what @souravehossain posted, but I eventually found the .css file under "~/.jupyter/custom/custom.css" and it worked
the ".jupyter" directory may be hidden, and you will have to view hidden directories to move into it
Thanks @souravehossain !
@mmcguffi thank you so much! I also had trouble finding the right css file and your comment helped. Finally fixed the issue with @souravehossain's suggestion.
Most helpful comment
replace the current div.output_area with the following in the custom css file
div.output_area {
display: -webkit-box;
padding: 13px;
}