diff options
| author | Hunternif <hunternif@gmail.com> | 2025-02-16 20:10:40 +0000 |
|---|---|---|
| committer | Hunternif <hunternif@gmail.com> | 2025-02-16 20:10:40 +0000 |
| commit | 5720297b4006eed53db19da5547bcac6307cf094 (patch) | |
| tree | b77ec448dac711b50239a962e278b702d88062bb /client/html | |
| parent | 01be3240e5805dd3a8385bbdfa0741978075b22c (diff) | |
client: fix inconsistent width in adaptive css on post page
Diffstat (limited to 'client/html')
| -rw-r--r-- | client/html/post_main.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/html/post_main.tpl b/client/html/post_main.tpl index 33f9afd..f0fc46d 100644 --- a/client/html/post_main.tpl +++ b/client/html/post_main.tpl @@ -70,7 +70,7 @@ <div class='sidebar-container'></div> - <% if (window.innerWidth <= 1000) { %> + <% if (window.innerWidth <= 800) { %> <div class='comments-panel'> <% if (ctx.canListComments) { %> <div class='comments-container'></div> @@ -86,7 +86,7 @@ <div class='content'> <div class='post-container'></div> - <% if (window.innerWidth > 1000) { %> + <% if (window.innerWidth > 800) { %> <% if (ctx.canListComments) { %> <div class='comments-container'></div> <% } %> |