Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/blame/commit/aba81a522a082f611bb773905d2cd69122e377ec/UI/Content/Bootstrap/component-animations.less You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/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;
}
}