Skip to content

Commit

Permalink
Fix for start from top
Browse files Browse the repository at this point in the history
  • Loading branch information
alexankitty committed Oct 20, 2022
1 parent e855f95 commit f288c1a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ async function loadSettings() {
height: ${settings.appearance.txtSize + 12}px;
}
#chatlog {
${settings.options.startFromBottom ? "bottom:" : "top:"} 0;
bottom: 0;
${settings.options.startFromBottom ? "" : "height: 100%;"}
}
.pfp{
height: ${settings.appearance.txtSize + 5}px;
Expand Down

0 comments on commit f288c1a

Please sign in to comment.