Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/blame/commit/487519a09f142cb620d9492ee32931afb2365c22/UI/Content/Bootstrap/component-animations.less You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/UI/Content/Bootstrap/component-animations.less

23 lines
306 B

//
// Component animations
// --------------------------------------------------
.fade {
opacity: 0;
.transition(opacity .15s linear);
&.in {
opacity: 1;
}
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
&.in {
height: auto;
}
}