This commit is contained in:
2025-11-07 10:02:33 -08:00
parent 1ad8c988de
commit 30c5613937
4 changed files with 70 additions and 33 deletions

View File

@@ -9,10 +9,10 @@
<!-- Alpine.js -->
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
</head>
<body class="min-h-screen bg-slate-50 text-slate-900">
<body class="h-screen flex flex-col m-0 bg-slate-50 text-slate-900">
<header class="border-b bg-white">
<div class="max-w-5xl mx-auto p-4 flex items-center justify-between">
<a href="/" class="font-semibold">Filevine Demo</a>
<a href="/" class="font-semibold">Rothbard Law Group - Cases</a>
<nav class="space-x-4">
{% if session.uid %}
<a href="/dashboard" class="text-sm text-slate-600 hover:text-slate-900">Dashboard</a>
@@ -23,7 +23,7 @@
</nav>
</div>
</header>
<main class="max-w-full mx-auto p-6 px-4 lg:px-6">
<main class="flex-1 overflow-auto p-6 px-4 lg:px-6">
{% block content %}{% endblock %}
</main>
</body>

View File

@@ -1,10 +1,12 @@
{% extends 'base.html' %}
{% block content %}
<div class="h-[80vh] flex flex-col m-4">
<h1 class="text-xl font-semibold mb-4">Projects for {{ case_email }}</h1>
<div class=" w-full flex-grow overflow-scroll rounded-2xl overflow-hidden">
<div class="h-full flex flex-col">
<h1 class="text-xl font-semibold mb-4">Projects for {{ case_email }}</h1>
<div class="overflow-scroll">
<table class="w-full whitespace-nowrap shadow-md border border-slate-200">
<thead class="bg-gradient-to-r from-blue-600 to-blue-700 text-left text-sm sticky top-0 z-10 border-b border-blue-800 text-white font-medium">
<thead class=" text-left text-sm sticky top-0 z-10 border-b border-blue-800 text-white font-medium"
style="background-color: rgb(89, 121, 142);">
<tr>
<th class="px-4 py-3">Matter Num</th>
<th class="px-4 py-3">Client / Property</th>
@@ -235,7 +237,11 @@
</tbody>
</table>
</div>
</div>
<!--
<div class="bg-white shadow rounded-2xl overflow-scroll">
<div class="flex flex-col m-4">
<div class=" w-full flex-grow overflow-scroll rounded-2xl overflow-hidden">
</div>
-->
{% endblock %}