26 lines
739 B
CSS
26 lines
739 B
CSS
/* Reduce sidebar width and padding */
|
|
.wm-nav {
|
|
width: 200px; /* Adjust to your preferred sidebar width */
|
|
padding: 10px; /* Reduce padding */
|
|
margin-left: 10px; /* Reduce left margin */
|
|
}
|
|
|
|
/* Expand main content area */
|
|
.wm-content {
|
|
max-width: 90%; /* Use more screen width */
|
|
margin: 0 auto; /* Center content with minimal margins */
|
|
padding: 15px; /* Reduce padding */
|
|
}
|
|
|
|
/* Ensure the container uses full width */
|
|
.wm-container {
|
|
max-width: 100%; /* Remove restrictive container width */
|
|
margin: 0; /* Remove container margins */
|
|
}
|
|
|
|
/* Optional: Adjust for larger screens */
|
|
@media (min-width: 1200px) {
|
|
.wm-content {
|
|
max-width: 1200px; /* Cap content width on very wide screens */
|
|
}
|
|
} |