17 lines
497 B
CSS
17 lines
497 B
CSS
/* Workflows Page Styles
|
|
*
|
|
* This page now uses shared styles from pages.module.css for consistency.
|
|
* Only workflow-specific styles should be defined here.
|
|
*/
|
|
|
|
/* Remove old .workflowsContainer - now using sharedStyles.pageContainer + sharedStyles.pageCard */
|
|
|
|
/* Workflow table container */
|
|
.workflowsTableContainer {
|
|
width: 100%;
|
|
height: 100%;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 400px; /* Ensure minimum height for table functionality */
|
|
}
|