How to change the Separator Color in Data Repeater
Comments
-
Please find the attached CSS for changing the color of the separator in the Data Repeater. Kindly review it, and let us know if you have any questions.
.data-repeater-item-separator:before {
content: '';
height: 1px;
width: 100%;
position: absolute;
background: red;
}
Note: The provided CSS is for instructional purposes. If needed, please feel free to modify it as per your requirements.

