death-save / combat-carousel

Combat Carousel Foundry VTT module
https://deathsave.dev
GNU General Public License v3.0
18 stars 21 forks source link

Absolute path for the backgroundimage denim075.png referenced in styles/combat-carrousel.css #122

Closed fgloppe closed 1 year ago

fgloppe commented 2 years ago

In file styles/combat-carrousel.css, the path for the image denim075.png used for some backgrounds is absolute. It should be relative to work with installation using a route prefix:

Here is the fix that works for me: I replaced all the instances of

background: url("/ui/denim075.png")

by

background: url("../../../ui/denim075.png")