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