@deepbag/react-grid-x
Version:
ReactGridX is a customizable and flexible React table component that supports pagination, dynamic rendering of table data, and customizable column rendering. It provides an easy-to-use interface for displaying tabular data with configurable columns, pagin
42 lines (38 loc) • 766 B
CSS
/* Loader container styling */
.rgx-theme .rgx-loader-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 9999;
display: flex;
align-items: center;
background-color: #e2e2e2;
padding: 8px 10px;
border-radius: 4px;
}
/* Loader spinner styling */
.rgx-theme .rgx-loader-spinner {
border: 4px solid #ddd;
border-top: 4px solid #3498db;
border-radius: 50%;
width: 10px;
height: 10px;
animation: spin 2s linear infinite;
}
/* Loader message styling */
.rgx-theme .rgx-loader-message {
font-size: 14px;
color: #333;
margin-left: 10px;
}
/* Spinner animation */
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}