35 lines
518 B
CSS
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;
|
|
}
|
|
} |