mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-03-21 01:22:23 +00:00
[CHORE]: Improve UX of custom logo screens (#806)
improve UX of custom logo screens
This commit is contained in:
parent
6d18d79bb7
commit
4d74f23c82
2 changed files with 23 additions and 13 deletions
|
@ -107,12 +107,14 @@ export default function CustomLogo() {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</label>
|
</label>
|
||||||
<button
|
{!isDefaultLogo && (
|
||||||
onClick={handleRemoveLogo}
|
<button
|
||||||
className="text-white text-base font-medium hover:text-opacity-60"
|
onClick={handleRemoveLogo}
|
||||||
>
|
className="text-white text-base font-medium hover:text-opacity-60"
|
||||||
Delete
|
>
|
||||||
</button>
|
Delete
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -123,13 +123,21 @@ export default function CustomLogo({ setHeader, setForwardBtn, setBackBtn }) {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
{!isDefaultLogo ? (
|
||||||
<button
|
<button
|
||||||
onClick={handleRemoveLogo}
|
onClick={handleRemoveLogo}
|
||||||
className="text-white text-base font-medium hover:text-opacity-60 mt-8"
|
className="text-white text-base font-medium hover:text-opacity-60 mt-8"
|
||||||
>
|
>
|
||||||
Remove logo
|
Remove logo
|
||||||
</button>
|
</button>
|
||||||
|
) : (
|
||||||
|
<button
|
||||||
|
onClick={handleForward}
|
||||||
|
className="text-white text-base font-medium hover:text-opacity-60 mt-8"
|
||||||
|
>
|
||||||
|
Skip
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue