feat: unify tool styles and add dynamic height for textareas

This commit is contained in:
2026-02-27 01:32:08 +00:00
parent 782786ec7e
commit 8bf44cde6a
8 changed files with 443 additions and 70 deletions

View File

@@ -1,6 +1,7 @@
import { createRouter, createWebHistory } from 'vue-router'
import Main from '../components/Main.vue'
import Passwords from '../components/tools/Passwords.vue'
import ClipboardSniffer from '../components/tools/ClipboardSniffer.vue'
const routes = [
{
@@ -12,6 +13,11 @@ const routes = [
path: '/passwords',
name: 'Passwords',
component: Passwords
},
{
path: '/clipboard-sniffer',
name: 'ClipboardSniffer',
component: ClipboardSniffer
}
]