mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-03-11 17:25:32 +00:00
Remove unnecessary padding from HTML content in reader view
This commit is contained in:
parent
c19974d6d1
commit
251d7266f5
1 changed files with 1 additions and 1 deletions
|
|
@ -102,7 +102,7 @@ String _buildHtml(String input) {
|
|||
// Decode HTML entities while keeping HTML tags
|
||||
htmlContent = _decodeHtmlEntities(htmlContent);
|
||||
|
||||
return '''<div id="readerViewContent"><div style="padding: 2em;">$htmlContent</div></div>''';
|
||||
return '''<div id="readerViewContent">$htmlContent</div>''';
|
||||
}
|
||||
|
||||
String _decodeHtmlEntities(String html) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue