mr01-table-plugin
Version:
The Table Plugin Modulable is a versatile React component designed for displaying and managing tabular data. It comes with features such as sorting, searching, pagination, and customizable entries per page. This README will guide you through the installat
26 lines (25 loc) • 573 B
CSS
.styles-module_table__pSrFL {
border-collapse: collapse;
display: table;
width: 100%;
}
.styles-module_table__pSrFL thead {
background-color: #2980b9;
color: #fff;
}
.styles-module_table__pSrFL td,
.styles-module_table__pSrFL th {
border: 1px solid #3498db;
padding: 8px;
text-align: left;
}
.styles-module_table__pSrFL th {
background-color: #3498db;
}
.styles-module_table__pSrFL tbody tr:nth-child(odd) {
background-color: #f8f9fa;
}
.styles-module_table__pSrFL tbody tr:hover {
background-color: #3498db;
color: #fff;
}