estatesfunding/ef-ui/src/dashboard.css

23 lines
479 B
CSS
Raw Normal View History

2024-09-06 15:02:20 +00:00
/* Add these styles to your main CSS file */
.dashboard-wrapper {
display: flex;
flex-direction: column;
min-height: 100vh; /* Ensure the wrapper takes full height */
}
.dashboard-content {
flex: 1; /* This will make the content grow to fill the space between Navbar and Footer */
}
footer {
width: 100%;
background-color: #333;
color: white;
padding: 10px;
text-align: center;
position: relative;
bottom: 0;
}