forked from hankbao/electron-notify
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnotification.html
More file actions
38 lines (38 loc) · 934 Bytes
/
notification.html
File metadata and controls
38 lines (38 loc) · 934 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
32
33
34
35
36
37
38
<html>
<head></head>
<body style="overflow: hidden; -webkit-user-select: none">
<div id="container">
<img src="" id="appIcon" />
<div id="text">
<b
id="title"
style="
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
"
></b>
<p id="message"></p>
</div>
<img src="" id="image" />
<div id="close">
<svg
width="16"
height="16"
viewBox="0 0 12 12"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.99997 2L6 6M6 6L9.99997 2M6 6L1.99997 10M6 6L9.99997 10"
stroke="#B8B7BF"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</div>
</div>
</body>
</html>