Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "smart-account-manager",
"private": true,
"version": "0.8.5",
"version": "0.8.6",
"type": "module",
"repository": "https://github.com/ethaccount/SAManager",
"author": "Johnson Chen <https://x.com/johnson86tw>",
Expand Down
2 changes: 1 addition & 1 deletion src/components/header/NetworkSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function onClickNetworkSelector() {
</DropdownMenuTrigger>

<!-- Dropdown Menu Content -->
<DropdownMenuContent class="w-80 max-h-[80vh] overflow-y-auto">
<DropdownMenuContent class="w-80 max-h-[80vh] overflow-y-auto z-[1100]">
<!-- Network Section -->
<template v-if="!props.fixedChain">
<DropdownMenuLabel>Network</DropdownMenuLabel>
Expand Down
14 changes: 4 additions & 10 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function onClickEnvironmentSwitch() {
</div>

<!-- Features Section -->
<div class="bg-muted/30 py-12 sm:py-16">
<div class="bg-muted/40 py-12 sm:py-16 rounded-xl">
<div class="container mx-auto px-4 max-w-5xl">
<div class="text-center space-y-4 mb-12">
<h2 class="text-xl sm:text-2xl font-bold tracking-tight">Interoperability Across Smart Accounts</h2>
Expand All @@ -67,9 +67,7 @@ function onClickEnvironmentSwitch() {
</div>

<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<Card
class="group border border-border/50 hover:border-primary/50 hover:shadow-md transition-all duration-300"
>
<Card class="group border border-border transition-all duration-300">
<CardHeader class="text-center pb-4">
<div
class="w-10 h-10 mx-auto mb-3 rounded-full bg-primary/10 flex items-center justify-center text-lg"
Expand All @@ -83,9 +81,7 @@ function onClickEnvironmentSwitch() {
</CardHeader>
</Card>

<Card
class="group border border-border/50 hover:border-primary/50 hover:shadow-md transition-all duration-300"
>
<Card class="group border border-border transition-all duration-300">
<CardHeader class="text-center pb-4">
<div
class="w-10 h-10 mx-auto mb-3 rounded-full bg-primary/10 flex items-center justify-center text-lg"
Expand All @@ -99,9 +95,7 @@ function onClickEnvironmentSwitch() {
</CardHeader>
</Card>

<Card
class="group border border-border/50 hover:border-primary/50 hover:shadow-md transition-all duration-300"
>
<Card class="group border border-border transition-all duration-300">
<CardHeader class="text-center pb-4">
<div
class="w-10 h-10 mx-auto mb-3 rounded-full bg-primary/10 flex items-center justify-center text-lg"
Expand Down