diff --git a/userscripts/style-webtoons.js b/userscripts/style-webtoons.js index 0bd15c3..dfb4f93 100644 --- a/userscripts/style-webtoons.js +++ b/userscripts/style-webtoons.js @@ -4,8 +4,7 @@ // @version 1.0 // @description Style Webtoons // @author rudism -// @match https://webtoons.com/* -// @match https://www.webtoons.com/* +// @match https://m.webtoons.com/* // @grant none // @run-at document-end // ==/UserScript== @@ -22,10 +21,11 @@ function injectStyle(css) { (function () { 'use strict'; injectStyle(` -.viewer_lst .viewer_img img._images { - max-width: 300px; - min-width: 300px; +#_viewer { + height: auto !important; +} +#_viewer .flick-ct img { + width: 30%; height: auto; - border: 1px solid #ccc; }`); })();