refac: styling
Some checks are pending
Deploy to HuggingFace Spaces / check-secret (push) Waiting to run
Deploy to HuggingFace Spaces / deploy (push) Blocked by required conditions
Create and publish Docker images with specific build args / build-main-image (linux/amd64) (push) Waiting to run
Create and publish Docker images with specific build args / build-main-image (linux/arm64) (push) Waiting to run
Create and publish Docker images with specific build args / build-cuda-image (linux/amd64) (push) Waiting to run
Create and publish Docker images with specific build args / build-cuda-image (linux/arm64) (push) Waiting to run
Create and publish Docker images with specific build args / build-ollama-image (linux/amd64) (push) Waiting to run
Create and publish Docker images with specific build args / build-ollama-image (linux/arm64) (push) Waiting to run
Create and publish Docker images with specific build args / merge-main-images (push) Blocked by required conditions
Create and publish Docker images with specific build args / merge-cuda-images (push) Blocked by required conditions
Create and publish Docker images with specific build args / merge-ollama-images (push) Blocked by required conditions
Python CI / Format Backend (3.11) (push) Waiting to run
Frontend Build / Format & Build Frontend (push) Waiting to run
Frontend Build / Frontend Unit Tests (push) Waiting to run
Integration Test / Run Cypress Integration Tests (push) Waiting to run
Integration Test / Run Migration Tests (push) Waiting to run

This commit is contained in:
Timothy Jaeryang Baek 2025-01-14 23:53:19 -08:00
parent f6a54c96bc
commit 5e548fa7b8

View File

@ -15,9 +15,7 @@
<Tooltip content="Home" placement="right"> <Tooltip content="Home" placement="right">
<button <button
class=" cursor-pointer bg-gray-100 dark:bg-gray-850 {selected === 'home' class=" cursor-pointer {selected === 'home' ? 'rounded-2xl' : 'rounded-full'}"
? 'rounded-2xl'
: 'rounded-full'}"
on:click={() => { on:click={() => {
selected = 'home'; selected = 'home';
}} }}
@ -42,13 +40,13 @@
{/if} {/if}
<button <button
class=" cursor-pointer bg-transparent" class=" cursor-pointer bg-transparent"
onclick={() => { on:click={() => {
selected = ''; selected = '';
}} }}
> >
<img <img
src="/assets/images/adam.jpg" src="/static/favicon.png"
class="size-11 {selected === '' ? 'rounded-2xl' : 'rounded-full'}" class="size-10 {selected === '' ? 'rounded-2xl' : 'rounded-full'}"
alt="logo" alt="logo"
draggable="false" draggable="false"
/> />
@ -56,8 +54,8 @@
</div> </div>
<div class="flex justify-center relative group text-gray-400"> <div class="flex justify-center relative group text-gray-400">
<button class=" cursor-pointer p-2" onclick={() => {}}> <button class=" cursor-pointer p-2" on:click={() => {}}>
<Plus className="size-5" strokeWidth="2" /> <Plus className="size-4" strokeWidth="2" />
</button> </button>
</div> </div>
</div> </div>