- Add TokenCard and CexAnalysisCard components for displaying token data - Implement real-time Redis event streaming for token updates - Add environment-based configuration system for dev/prod Redis servers - Create comprehensive hunting ground dashboard with card management - Add individual and bulk card removal functionality - Implement browser integration for token details viewing - Add timestamp utilities and proper type handling for Redis events - Create production-ready configuration with 154.38.185.112 Redis server - Add comprehensive documentation in README.md and CONTRIBUTORS.md - Restructure project architecture with proper Electron-Vue integration BREAKING CHANGE: Redis configuration now uses environment-based settings
30 lines
No EOL
619 B
Vue
30 lines
No EOL
619 B
Vue
<template>
|
|
<div class="min-h-screen bg-base-100 flex flex-col">
|
|
<!-- Custom Title Bar for window dragging and controls -->
|
|
<TitleBar />
|
|
|
|
<!-- Main Content Area with no-drag to prevent dragging from form elements -->
|
|
<main class="flex-1 overflow-hidden" style="-webkit-app-region: no-drag;">
|
|
<slot />
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// Auth layout - includes title bar but no additional navigation
|
|
</script>
|
|
|
|
<style>
|
|
/* Ensure proper window behavior */
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#__nuxt {
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
|