Jake Vanderwerf
2025-09-30 70755b78e481bbf3aa4ea788cc74076c821db0cd
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
.notifications .mark-read {
    display: flex;
    transition: border-color var(--timing) var(--function);
}
    .notifications .mark-read:hover {
        border: 1px solid var(--pink);
        transition: border-color var(--timing) var(--function);
    }
 
.notifications .mark-read .hide {
    position: absolute;
}
.notifications .mark-read:hover .show,
.notifications .mark-read .hide {
    transform: scale(0);
    transform-origin: center;
    opacity: 0;
    transition: opacity var(--timing) var(--function);
    transition-property: opacity, transform;
}
.notifications .mark-read .show,
.notifications .mark-read:hover .hide {
    transform: scale(1);
    transform-origin: center;
    opacity: 1;
    transition: opacity var(--timing) var(--function);
    transition-property: opacity, transform;
}
 
.notifications .empty-state {
    padding: 1rem 0;
}
.notifications  #view-all {
    background-color: var(--overlay);
}
 
.notification-preview {
    transition: all 0.3s ease-out;
}
 
.notification-preview.fade-in {
    opacity: 0;
    transform: translateX(-20px);
}
 
.notification-preview.fade-out {
    opacity: 0;
    transform: translateX(20px);
}
 
.notification-preview.slide-out {
    opacity: 0;
    transform: translateX(100%);
}
 
.empty-state {
    transition: opacity 0.3s ease-out;
}
 
.empty-state.fade-in {
    opacity: 0;
}