Minor fixes +v9 support

This commit is contained in:
2021-12-20 11:54:19 +01:00
parent 474f34dadc
commit 22a92588e8
6 changed files with 22 additions and 15 deletions

View File

@ -94,6 +94,12 @@ Hooks.once("ready", function () {
user: game.user._id
});
}
// CSS patch for v9
if (game.version) {
let sidebar = document.getElementById("sidebar");
sidebar.style.width = "min-content";
}
welcomeMessage();
});