Django_Basic_Manufacturing_3/static/css/custom.css
2025-08-22 17:05:22 +07:00

35 lines
518 B
CSS

/* Custom styles for the manufacturing app */
/* Sidebar styling */
.sidebar {
min-height: calc(100vh - 56px);
}
/* Dashboard widgets */
.dashboard-widget {
min-height: 200px;
}
/* Print styles */
@media print {
.no-print {
display: none !important;
}
.sidebar {
display: none;
}
main {
width: 100%;
margin: 0;
padding: 0;
}
}
/* Responsive adjustments */
@media (max-width: 768px) {
.sidebar {
min-height: auto;
}
}