1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
:root { --cru-card-border-radius: 8px; } .cru-card { border: 1px solid; border-color: #e9ecef; border-radius: var(--cru-card-border-radius); background: #fefeff; transition: all 0.3s; } .cru-card:hover { border-color: var(--cru-primary-color); }