Skip to content

Commit 60e32e7

Browse files
committed
Fix path of img
1 parent 24f4f37 commit 60e32e7

File tree

8 files changed

+11
-87
lines changed

8 files changed

+11
-87
lines changed

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
<main class="flex-1 md:ml-[250px] overflow-y-auto">
104104
<!-- Mobile Nav -->
105105
<div class="mobile-nav flex justify-between items-center p-4 shadow-md md:hidden">
106-
<img src="icons/logo.svg" class="h-12" />
106+
<img src="/icons/logo.svg" class="h-12" />
107107
<button @click="toggleNav" class="focus:outline-none">
108108
<span :class="{ 'transform rotate-45': isOpen }" class="block w-6 h-0.5 bg-black mb-1 transition-transform"></span>
109109
<span :class="{ 'opacity-0': isOpen }" class="block w-6 h-0.5 bg-black mb-1 transition-opacity"></span>

src/assets/css/color.css

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/assets/css/modified-el-component.css

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/assets/expclip-logo-original.svg

Lines changed: 0 additions & 49 deletions
This file was deleted.
-13.2 KB
Binary file not shown.

src/assets/expclip-logo.png

-22.6 KB
Binary file not shown.

src/components/AccountPopover.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
<div class="flex items-center justify-between">
2525
<span>Theme</span>
2626
<div class="flex">
27-
<img class="w-[26px] h-[26px] hover:bg-gray-100 px-1 rounded" src="icons/mode-light.svg">
28-
<img class="w-[26px] h-[26px] hover:bg-gray-100 px-1 rounded" src="icons/mode-dark.svg">
29-
<img class="w-[26px] h-[26px] hover:bg-gray-100 px-1 rounded" src="icons/mode-system.svg">
27+
<img class="w-[26px] h-[26px] hover:bg-gray-100 px-1 rounded" src="/icons/mode-light.svg">
28+
<img class="w-[26px] h-[26px] hover:bg-gray-100 px-1 rounded" src="/icons/mode-dark.svg">
29+
<img class="w-[26px] h-[26px] hover:bg-gray-100 px-1 rounded" src="/icons/mode-system.svg">
3030
</div>
3131
</div>
3232
</div>

src/views/home.vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<div class="flex flex-col justify-between space-y-4 px-10 py-8 border rounded-lg">
6363
<div class="flex flex-row items-center justify-between mb-4">
6464
<div>
65-
<img src="icons/block-quote-line.svg" class="w-20 h-20 text-gray-400" />
65+
<img src="/icons/block-quote-line.svg" class="w-20 h-20 text-gray-400" />
6666
<span class="text-xl font-semibold ">Today's Quote</span>
6767
</div>
6868
<ViewAll to="/quotes" />
@@ -80,27 +80,27 @@
8080
<div class="grid grid-cols-2 gap-4 mt-4">
8181
<div class="text-[14px] text-gray-500
8282
rounded px-2 py-1 flex items-center">
83-
<img src="icons/pdf.svg" class="w-8 h-8 mr-2" alt="PDF icon" />
83+
<img src="/icons/pdf.svg" class="w-8 h-8 mr-2" alt="PDF icon" />
8484
PDF
8585
</div>
8686
<div class="text-[14px] text-gray-500
8787
rounded px-2 py-1 flex items-center">
88-
<img src="icons/txt.svg" class="w-8 h-8 mr-2" alt="TXT icon" />
88+
<img src="/icons/txt.svg" class="w-8 h-8 mr-2" alt="TXT icon" />
8989
TXT
9090
</div>
9191
<!-- <div class="text-[14px] text-gray-500
9292
rounded px-2 py-1 flex items-center">
93-
<img src="icons/png.svg" class="w-8 h-8 mr-2" alt="PNG icon" />
93+
<img src="/icons/png.svg" class="w-8 h-8 mr-2" alt="PNG icon" />
9494
PNG
9595
</div> -->
9696
<div class="text-[14px] text-gray-500
9797
rounded px-2 py-1 flex items-center">
98-
<img src="icons/docx.svg" class="w-8 h-8 mr-2" alt="DOCX icon" />
98+
<img src="/icons/docx.svg" class="w-8 h-8 mr-2" alt="DOCX icon" />
9999
DOCX
100100
</div>
101101
<div class="text-[14px] text-gray-500
102102
rounded px-2 py-1 flex items-center">
103-
<img src="icons/csv.svg" class="w-8 h-8 mr-2" alt="CSV icon" />
103+
<img src="/icons/csv.svg" class="w-8 h-8 mr-2" alt="CSV icon" />
104104
CSV
105105
</div>
106106
</div>
@@ -109,7 +109,7 @@
109109
<!-- <label class="mt-4 border-dashed border-2 border-gray-300 p-10 text-center cursor-pointer hover:border-gray-400 transition block">
110110
<p class="text-lg">
111111
<div class="flex flex-col items-center">
112-
<img src="icons/file-text.svg" class="w-10 h-10 mb-2" />
112+
<img src="/icons/file-text.svg" class="w-10 h-10 mb-2" />
113113
<p>Drop <em class="text-lime-600">My Clipping.txt</em> here</p>
114114
</div>
115115
</p>

0 commit comments

Comments
 (0)