fix: Add debug logging for AI button

This commit is contained in:
DiTus
2026-03-21 07:49:58 +01:00
parent 785792fa6e
commit 3ec2e41da7
4 changed files with 99 additions and 19 deletions

View File

@ -104,6 +104,10 @@ body {
.stat-value.positive { color: #26d367; }
.stat-value.negative { color: #ef5350; }
/* Best Moving Averages percentage change colors */
.ta-ma-change.positive { color: #26d367; }
.ta-ma-change.negative { color: #ef5350; }
/* Chart Area */
#chartWrapper {
@ -199,3 +203,11 @@ body {
--tv-hover: #252f3f;
}
/* Settings Popup */
#settingsPopup.hidden {
display: none !important;
}
#settingsPopup.show {
display: block !important;
}