move icons to assets folder

This commit is contained in:
Kamila 2024-07-31 14:20:22 +02:00
parent 71628f29e5
commit 139f9bbc36
6 changed files with 4 additions and 8 deletions

View File

@ -77,12 +77,8 @@ declare module 'vue' {
IBiX: typeof import('~icons/bi/x')['default']
IBiXCircle: typeof import('~icons/bi/x-circle')['default']
IIcBaselineClose: typeof import('~icons/ic/baseline-close')['default']
IOcticonCircleSlash24: typeof import('~icons/octicon/circle-slash24')['default']
IOcticonPerson24: typeof import('~icons/octicon/person24')['default']
IPhCaretDown: typeof import('~icons/ph/caret-down')['default']
IPhCaretUpFill: typeof import('~icons/ph/caret-up-fill')['default']
IPhEnvelope: typeof import('~icons/ph/envelope')['default']
IPhXCircle: typeof import('~icons/ph/x-circle')['default']
NavBar: typeof import('./src/components/NavBar.vue')['default']
NotFoundPage: typeof import('./src/components/NotFoundPage.vue')['default']
OpenCreationsTable: typeof import('./src/components/Tables/OpenCreationsTable.vue')['default']

View File

Before

Width:  |  Height:  |  Size: 1022 B

After

Width:  |  Height:  |  Size: 1022 B

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 491 B

After

Width:  |  Height:  |  Size: 491 B

View File

Before

Width:  |  Height:  |  Size: 396 B

After

Width:  |  Height:  |  Size: 396 B

View File

@ -23,9 +23,9 @@
class="mr-3 test-deleted-icon position-relative rounded-circle"
style="width: 40px; height: 40px"
>
<img src="/admin/public/img/circle-slash.png" class="position-absolute" />
<img src="../../assets/icons/circle-slash.png" class="position-absolute" />
<img
src="/admin/public/img/person.png"
src="../../assets/icons/person.png"
class="position-relative"
style="transform: translate(50%, 30%)"
/>
@ -37,7 +37,7 @@
style="background-color: #dc3545; width: 40px; height: 40px"
>
<img
src="/admin/public/img/envelope.png"
src="../../assets/icons/envelope.png"
style="transform: translate(30%, 30%); width: 25px; height: 25px"
class="position-absolute"
/>
@ -46,7 +46,7 @@
<img
v-if="!row.item.hasElopage"
class="mr-3 rounded-circle bg-red-dark"
src="/admin/public/img/elopage_favicon.png"
src="../../assets/icons/elopage_favicon.png"
style="background-color: #dc3545; width: 40px; height: 40px"
/>
</div>