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