23 lines
479 B
CSS
23 lines
479 B
CSS
|
/* 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;
|
||
|
}
|
||
|
|