-
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
/**
* SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
* SPDX-License-Identifier: AGPL-3.0-only
*/
.toast {
align-items: center;
background-color: var(--accent-3);
box-shadow: var(--shadow-3);
}
@keyframes slide-in {
from {
transform: translateX(-20px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
.toast[data-state="open"] {
animation: 0.3s 0s ease-out 1 both slide-in;
}
.toast[data-swipe="move"] {
transform: translateX(var(--radix-toast-swipe-move-x));
}