Fix UI. Reduce excessive spacing between plot grid and subdirectories

- Reduce plot-container margin-bottom from 450px to 2rem in view-controls.css
- Reduce body padding-bottom from 400px to 2rem in base.css
- Fix unnecessary spacing since stats box uses fixed positioning
- Enhance logger with professional tree-structured output and colors
- Replace print statements with structured logging throughout codebase
This commit is contained in:
Kylian Schmidt
2025-08-07 16:00:18 +02:00
parent eb770428b9
commit 0a345a0f22
6 changed files with 229 additions and 89 deletions
+1 -1
View File
@@ -118,7 +118,7 @@
/* Plot Container Base Styles */
.plot-container {
margin: 1rem 0;
margin-bottom: 450px; /* Add extra bottom margin to prevent overlap with stats box */
margin-bottom: 2rem; /* Reduced from 450px - stats box is fixed positioned */
transition: all 0.3s ease;
clear: both;
}