Merge branch 'dev' into fix/planDetail-padding
This commit is contained in:
3 files changed
+13
-13
No files matched your search
@@ -1,7 +1,7 @@
|
|||||||
<%- include("./partials/fileHeader") %>
|
<%- include("./partials/fileHeader") %>
|
||||||
<%- include("./partials/header") %>
|
<%- include("./partials/header") %>
|
||||||
|
|
||||||
<main class="pt-24 pb-14">
|
<main class="pt-24 pb-14">
|
||||||
<!-- Buttons -->
|
<!-- Buttons -->
|
||||||
<div class="flex justify-end gap-4 px-5 py-6">
|
<div class="flex justify-end gap-4 px-5 py-6">
|
||||||
<a href="/assets?popup"
|
<a href="/assets?popup"
|
||||||
@@ -11,17 +11,17 @@
|
|||||||
class="text-center cursor-pointer min-w-[150px] bg-green-600 px-4 py-2 text-white rounded hover:bg-green-800"
|
class="text-center cursor-pointer min-w-[150px] bg-green-600 px-4 py-2 text-white rounded hover:bg-green-800"
|
||||||
type="button">Create new plan </a>
|
type="button">Create new plan </a>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex justify-center">
|
<div class="flex justify-center sm:px-6 w-full ">
|
||||||
<div class="mb-12 grid gap-y-4 gap-x-6 md:grid-cols-2 mr-3 ml-3 ">
|
<div class="mb-12 grid gap-y-4 gap-x-6 md:grid-cols-2 ">
|
||||||
<% plans.forEach(plan=> { %>
|
<% plans.forEach(plan=> { %>
|
||||||
<%- include('./partials/dashboardBox.ejs', {plan: plan}) %>
|
<%- include('./partials/dashboardBox.ejs', {plan: plan}) %>
|
||||||
<% }); %>
|
<% }); %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<script src="/static/scripts/dollarFormat.js"></script>
|
<script src="/static/scripts/dollarFormat.js"></script>
|
||||||
|
|
||||||
<%- include("./partials/navBar") %>
|
<%- include("./partials/navBar") %>
|
||||||
<%- include("./partials/scriptLoader") %>
|
<%- include("./partials/scriptLoader") %>
|
||||||
<%- include("./partials/footer") %>
|
<%- include("./partials/footer") %>
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
<div class="mt-12">
|
<div class="mt-12">
|
||||||
<a href="/plans/<%=plan._id%>">
|
<a href="/plans/<%=plan._id%>">
|
||||||
<div class=" relative flex flex-col bg-clip-border rounded-xl bg-white text-gray-700 shadow-md w-full min-h-[150px] min-w-[380px]
|
<div class=" relative flex flex-col bg-clip-border rounded-xl bg-white text-gray-700 shadow-md w-full min-h-[130px] min-w-[340px]
|
||||||
md:min-h-[220px] md:min-w-[500px]">
|
md:min-h-[220px] md:min-w-[500px]">
|
||||||
<!-- <div -->
|
<!-- <div -->
|
||||||
<!-- class="bg-clip-border mx-4 rounded-xl overflow-hidden bg-gradient-to-tr from-blue-600 to-blue-400 text-white shadow-blue-500/40 shadow-lg absolute mt-2 grid h-16 w-16 place-items-center"> -->
|
<!-- class="bg-clip-border mx-4 rounded-xl overflow-hidden bg-gradient-to-tr from-blue-600 to-blue-400 text-white shadow-blue-500/40 shadow-lg absolute mt-2 grid h-16 w-16 place-items-center"> -->
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
<%- include("./partials/fileHeader") %>
|
<%- include("./partials/fileHeader") %>
|
||||||
<%- include("./partials/header") %>
|
<%- include("./partials/header") %>
|
||||||
|
|
||||||
<main class="container mx-auto my-auto p-30">
|
<main class="container mx-auto p-4 p-28">
|
||||||
<h2 class="text-xl text-white mt-auto font-semibold mb-4">Welcome: <%= user.name %></h2>
|
<h2 class="text-xl text-white font-semibold mb-4">Welcome: <%= user.name %></h2>
|
||||||
<div class="max-w-lg mx-auto bg-white p-14 rounded-xl shadow-lg space-y-6 dark:bg-gray-800">
|
<div class="max-w-lg mx-auto bg-white p-6 sm:p-8 rounded-xl shadow-lg space-y-6 dark:bg-gray-800">
|
||||||
|
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<h3 class="text-2xl font-bold text-gray-800 dark:text-white"><%= plan.name %></h3>
|
<h3 class="text-2xl font-bold text-gray-800 dark:text-white"><%= plan.name %></h3>
|
||||||
|
|||||||
Reference in new issue
Block a user