Skip to content

Commit

Permalink
fix: Misc
Browse files Browse the repository at this point in the history
- New logo
- App menu style
  • Loading branch information
surajshetty3416 committed Sep 22, 2024
1 parent 00adcb3 commit 99f6ca5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Binary file modified frontend/public/builder_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/public/builder_logo_old.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 11 additions & 11 deletions frontend/src/components/AppsMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
</template>
<template #body>
<div
class="mx-3 grid grid-cols-3 rounded-lg border border-outline-gray-2 bg-surface-white p-2 text-sm text-text-icons-gray-8 shadow-xl dark:bg-surface-gray-1">
<div v-for="app in apps.data" key="name">
<a
:href="app.route"
class="flex flex-col items-center justify-center gap-1.5 rounded px-3 py-2 hover:bg-surface-gray-2">
<img class="size-8" :src="app.logo" />
<router-link :to="app.route">
{{ app.title }}
</router-link>
</a>
</div>
class="flex w-fit min-w-32 max-w-48 flex-col rounded-lg border border-outline-gray-2 bg-surface-white p-2 text-sm text-text-icons-gray-8 shadow-xl auto-fill-[100px] dark:bg-surface-gray-1">
<a
:href="app.route"
v-for="app in apps.data"
key="name"
class="flex items-center gap-2 rounded p-1 hover:bg-surface-gray-2">
<img class="size-6" :src="app.logo" />
<router-link :to="app.route" class="max-w-18 w-full truncate">
{{ app.title }}
</router-link>
</a>
</div>
</template>
</Popover>
Expand Down

0 comments on commit 99f6ca5

Please sign in to comment.