Refactor footer styles and adjust container padding

- Removed margin-top from `.footer` in `common.css`, affecting spacing above the footer.
- Deleted `<style>` tag for theme preloading, which may impact theme loading behavior.
- Increased `padding-bottom` in `.container-fluid` from 60px to 100px in `dashboard.css` to accommodate a minimized system monitor.
This commit is contained in:
DJObleezy 2025-04-26 20:50:50 -07:00
parent dec0045244
commit f45ce8a1e8
2 changed files with 1 additions and 5 deletions

View File

@ -1,14 +1,10 @@
.footer {
margin-top: 30px;
padding: 10px 0;
color: grey;
font-size: 0.9rem;
border-top: 1px solid rgba(128, 128, 128, 0.2);
}
</style >
<!-- Preload theme to prevent flicker -->
<style id="theme-preload" >
/* Theme-aware loading state */
html.bitcoin-theme {
background-color: #111111;

View File

@ -184,7 +184,7 @@
}
/* Add bottom padding to accommodate minimized system monitor */
.container-fluid {
padding-bottom: 60px !important; /* Enough space for minimized monitor */
padding-bottom: 100px !important; /* Enough space for minimized monitor */
}
/* Add these styles to dashboard.css */