-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
33 lines (30 loc) · 1.2 KB
/
popup.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SVG Toolkit</title>
<link href="styles.css" rel="stylesheet">
</head>
<body class="app-container">
<div class="content-wrapper">
<header class="app-header">
<h1 class="app-title">SVG Toolkit</h1>
<div>
<span id="svgCount" class="counter-badge">0 SVGs found</span>
</div>
</header>
<div id="svgContainer" class="svg-container">
<!-- SVGs will be populated here -->
</div>
<div id="noSVGs" class="empty-state">
<svg class="empty-state-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>
<p class="empty-state-text">No SVGs found on this page</p>
</div>
</div>
<script src="popup.js" type="module"></script>
</body>
</html>