1
0
mirror of https://github.com/coalaura/whiskr.git synced 2025-09-08 17:06:42 +00:00

small fix

This commit is contained in:
Laura
2025-08-17 04:19:05 +02:00
parent efd373f4c8
commit 860d029f2e
2 changed files with 5 additions and 3 deletions

View File

@@ -2,6 +2,8 @@
font-size: 15px; font-size: 15px;
line-height: 23px; line-height: 23px;
color: #CAD3F5; color: #CAD3F5;
overflow: hidden;
word-wrap: break-word;
} }
.markdown h1, .markdown h1,

View File

@@ -33,8 +33,8 @@
jsonMode = false, jsonMode = false,
searchTool = false; searchTool = false;
function scroll() { function scroll(force = false) {
if (!autoScrolling) { if (!autoScrolling && !force) {
return; return;
} }
@@ -1045,7 +1045,7 @@
}); });
$bottom.addEventListener("click", () => { $bottom.addEventListener("click", () => {
scroll(); scroll(true);
}); });
$role.addEventListener("change", () => { $role.addEventListener("change", () => {