Skip to content

Commit

Permalink
remove right border
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcottle committed Nov 16, 2024
1 parent 345b52a commit 9d55218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pages/MainPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Header/>

<!-- tabs -->
<div v-if="channels.length > 0 || nodes.length > 0" class="bg-white border-b border-r border-gray-200">
<div v-if="channels.length > 0 || nodes.length > 0" class="bg-white border-b border-gray-200">
<div class="-mb-px flex">
<div @click="tab = 'channels'" class="w-full border-b-2 py-3 px-1 text-center text-sm font-medium cursor-pointer" :class="[ tab === 'channels' ? 'border-blue-500 text-blue-600' : 'border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700']">Channels</div>
<div @click="tab = 'nodes'" class="w-full border-b-2 py-3 px-1 text-center text-sm font-medium cursor-pointer" :class="[ tab === 'nodes' ? 'border-blue-500 text-blue-600' : 'border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700']">Nodes</div>
Expand Down

0 comments on commit 9d55218

Please sign in to comment.