-
ABP Framework version: v9.1.0
-
UI Type: MVC
-
Database System: EF Core
-
Tiered (for MVC) or Auth Server Separated (for Angular): no
-
Exception message and full stack trace:
When scrolling to the bottom of any page, an exception occurs with the footer display.
https://github.com/abpframework/abp/issues/22173
-
Steps to reproduce the issue:
1.Create a new project
abp new Acme.BookStore -dbms SQLite -m none --theme leptonx -csf
2.Run
5 Answer(s)
-
0
hi
Try to add the below style to
/wwwroot/global-styles.css
.ps__rail-x, .ps__rail-y { display: none; }
This will be fixed in next lepton version.
Thanks.
-
0
hi maliming
Not resolved after the modification
-
0
You can check the
ps__rail-y
element. it should have thedisplay: none
style.Make sure the styles are loaded by page.
.ps__rail-x, .ps__rail-y { display: none; }
-
0
Add the following style to resolve.
It was missing a ,.ps__rail-x, .ps__rail-y { display: none; }
-
0
great! 👍