-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontent.css
More file actions
31 lines (30 loc) · 827 Bytes
/
Copy pathcontent.css
File metadata and controls
31 lines (30 loc) · 827 Bytes
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
.x2markdown-toast {
position: fixed;
bottom: 32px;
left: 50%;
transform: translateX(-50%) translateY(12px) scale(0.98);
z-index: 2147483647;
width: max-content;
max-width: min(356px, calc(100vw - 32px));
padding: 12px 16px;
border-radius: 8px;
background: hsl(0, 0%, 9%);
color: hsl(0, 0%, 98%);
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
font-size: 13px;
line-height: 1.5;
letter-spacing: -0.01em;
border: 1px solid hsl(0, 0%, 18%);
box-shadow:
0 4px 12px rgba(0, 0, 0, 0.16),
0 0 0 1px rgba(0, 0, 0, 0.06);
opacity: 0;
transition:
opacity 0.2s ease,
transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
pointer-events: none;
}
.x2markdown-toast--visible {
opacity: 1;
transform: translateX(-50%) translateY(0) scale(1);
}