File size: 428 Bytes
d04e364
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.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;
    }
  }