Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/30411b1502665a3648169c1f4efb3cabc28f2140
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
14 additions and
8 deletions
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
### Added
- Added a hover effect to the table style
### Fixed
- Fixed an issue with the user currency of the public page
@ -11,20 +11,22 @@
. mat-row {
& : nth-child ( even ) {
background-color : rgba (
var ( - - palette-foreground-base ) ,
var ( - - palette-background-hover-alpha )
) ;
background-color : rgba ( var ( -- palette-foreground-base ) , 0 .02 ) ;
}
& : hover {
background-color : rgba ( var ( -- palette-foreground-base ) , 0 .05 ) ;
}
}
@if $darkTheme {
. mat-row {
& : nth-child ( even ) {
background-color : rgba (
var ( - - palette-foreground-base-dark ) ,
var ( - - palette-background-hover-alpha )
) ;
background-color : rgba ( var ( -- palette-foreground-base-dark ) , 0 .02 ) ;
}
& : hover {
background-color : rgba ( var ( -- palette-foreground-base-dark ) , 0 .05 ) ;
}
}
}