feat(Settings): add dev mode toggle to images

This commit is contained in:
sethburkart123
2024-09-19 17:03:58 +10:00
parent 91ec33c0f9
commit 92c0076e2d
3 changed files with 38 additions and 3 deletions
@@ -72,7 +72,7 @@
>
<div class="flex">
{#each tabs as { Content, props }, index}
<div class="absolute w-full h-full transition-opacity duration-300 overflow-y-scroll tab {activeTab === index ? 'opacity-100 active' : 'opacity-0'}"
<div class="absolute focus:outline-none w-full h-full transition-opacity duration-300 overflow-y-scroll tab {activeTab === index ? 'opacity-100 active' : 'opacity-0'}"
style="left: {index * 100}%;">
<Content {...props} />
</div>