refactor: align privacy policy layout with app design
All checks were successful
Deploy to Production / deploy (push) Successful in 7s

This commit is contained in:
2026-02-27 04:20:29 +00:00
parent 348c78612d
commit 8fb3ee1069

View File

@@ -3,8 +3,8 @@ import { ArrowLeft } from 'lucide-vue-next'
</script>
<template>
<div class="privacy-container">
<div class="privacy-content">
<div class="tool-container">
<div class="tool-panel privacy-panel">
<header class="privacy-header">
<router-link to="/" class="back-link">
<ArrowLeft size="20" />
@@ -14,6 +14,7 @@ import { ArrowLeft } from 'lucide-vue-next'
<p class="last-updated">Last Updated: February 27, 2026</p>
</header>
<div class="privacy-body">
<section>
<h2>1. Introduction</h2>
<p>
@@ -75,35 +76,40 @@ import { ArrowLeft } from 'lucide-vue-next'
</section>
</div>
</div>
</div>
</template>
<style scoped>
.privacy-container {
min-height: 100vh;
width: 100%;
display: flex;
justify-content: center;
padding: 2rem;
background: var(--bg-gradient);
color: var(--text-color);
.privacy-panel {
max-width: 900px; /* Slightly wider for reading */
margin: 0 auto;
}
.privacy-content {
width: 100%;
max-width: 800px;
background: var(--glass-bg);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid var(--glass-border);
border-radius: 16px;
padding: 3rem;
box-shadow: var(--glass-shadow);
.privacy-body {
overflow-y: auto;
padding-right: 0.5rem;
}
/* Custom scrollbar for privacy body */
.privacy-body::-webkit-scrollbar {
width: 8px;
}
.privacy-body::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
border-radius: 4px;
}
.privacy-body::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.2);
border-radius: 4px;
}
.privacy-header {
margin-bottom: 3rem;
margin-bottom: 2rem;
border-bottom: 1px solid var(--glass-border);
padding-bottom: 2rem;
padding-bottom: 1.5rem;
flex-shrink: 0;
}
.back-link {