.row::-webkit-scrollbar{ width: 2px; background-color: transparent; border-radius: 10px; cursor: pointer; height: 90%; } .row::-webkit-scrollbar-thumb{ background: linear-gradient(to bottom, #00c8ff, #2635c1); border-radius: 10px; cursor: pointer; } .fade-in { animation: fadeIn 0.3s ease; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }