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
@@ -9,7 +9,7 @@ body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
margin: 0;
padding: 1rem;
padding-bottom: 400px; /* Further increased bottom padding to prevent overlap with stats box */
padding-bottom: 2rem; /* Reduced from 400px - stats box is fixed positioned */
background-color: var(--bg-color);
color: var(--text-color);
transition: background-color 0.3s, color 0.3s;