Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zlayine committed Oct 19, 2023
1 parent ab6b64a commit 1b1d920
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion resources/js/components/SideNavbar.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="w-64 flex-col hidden md:flex animate-slide-in">
<div class="flex flex-grow flex-col overflow-y-auto border-r border-gray-200 bg-white pt-5 pb-4">
<div class="flex flex-grow flex-col overflow-y-auto border-r border-gray-200 bg-white pt-4 pb-4">
<div class="flex flex-shrink-0 items-center px-4">
<CanaryEnjinLogo v-if="canaryHost" class="h-8 w-auto" />
<EnjinLogo v-else class="h-8 w-auto" />
Expand Down
4 changes: 2 additions & 2 deletions resources/js/components/pages/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
>
<p class="font-bold">Initialization Guide</p>
<p>Please complete these steps in order to use the platform:</p>
<div v-if="!walletAccount">1. Add a wallet account</div>
<div v-if="!tokens?.length">{{ walletAccount ? '1.' : '2.' }} Create an API token</div>
<div v-if="!appStore.user?.account">1. Add a wallet account</div>
<div v-if="!tokens?.length">{{ appStore.user?.account ? '1.' : '2.' }} Create an API token</div>
</div>
<div class="flex flex-col space-y-8">
<div class="">
Expand Down
10 changes: 5 additions & 5 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ module.exports = {
},
},
animation: {
'fade-in': 'fade-in 0.15s ease-in',
'fade-out': 'fade-out 0.15s ease-out',
'slide-in': 'slide-in 0.15s ease-in',
'slide-in-left': 'slide-in-left 0.15s ease-in',
'slide-out': 'slide-out 0.15s ease-out',
'fade-in': 'fade-in 0.2s ease-in',
'fade-out': 'fade-out 0.2s ease-out',
'slide-in': 'slide-in 0.2s ease-in',
'slide-in-left': 'slide-in-left 0.2s ease-in',
'slide-out': 'slide-out 0.2s ease-out',
},
},
},
Expand Down

0 comments on commit 1b1d920

Please sign in to comment.