Evo-ERP/app/static/css/components/tables.css
2024-11-06 02:39:48 +08:00

22 lines
349 B
CSS

@import '../utils/variables.css';
.table {
margin-bottom: 0;
}
.table thead th {
background-color: var(--light-color);
font-weight: 600;
border-bottom: none;
padding: 1rem 1.5rem;
}
.table td {
padding: 1rem 1.5rem;
vertical-align: middle;
}
.table-hover tbody tr:hover {
background-color: rgba(0, 0, 0, 0.02);
}