Browse Source

Change position of the icon

Alex Tran 2 năm trước cách đây
mục cha
commit
b7f1a1ad4b

+ 1 - 1
web/src/lib/components/asset-viewer/asset-viewer-nav-bar.svelte

@@ -17,7 +17,7 @@
 	</div>
 	<div class="text-white flex gap-2">
 		<CircleIconButton logo={CloudDownloadOutline} on:click={() => dispatch('download')} />
-		<CircleIconButton logo={InformationOutline} on:click={() => dispatch('showDetail')} />
 		<CircleIconButton logo={DeleteOutline} on:click={() => dispatch('delete')} />
+		<CircleIconButton logo={InformationOutline} on:click={() => dispatch('showDetail')} />
 	</div>
 </div>