Skip to content

Commit f226a78

Browse files
committed
style: Update styling in HTML files for consistency
1 parent 07330bc commit f226a78

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/views/components/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="p-10 bg-base-200">
1+
<div class="p-10">
22
<div class="mx-auto max-w-6xl w-full text-center text-sm">
33
<p>
44
Copyright © 2024. Made with ❤️ by

src/views/components/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<header class="navbar p-10 sticky top-0 z-10 bg-base-100">
1+
<header class="navbar p-10 sticky top-0 z-10 bg-base-300">
22
<div class="max-w-6xl mx-auto justify-between w-full items-center">
33
<div class="flex-1">
44
<a class="btn btn-ghost text-3xl font-extrabold" href="/">Notify</a>

src/views/layouts/app.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<!-- head -->
44
<%- include('../components/head.html') %>
55

6-
<body class="flex min-h-screen flex-col overflow-auto max-w-full">
6+
<body class="flex min-h-screen flex-col overflow-auto max-w-full bg-base-200">
77
<!-- header -->
88
<%- include('../components/header.html') %>
99

10-
<main class="flex-1 relative h-full bg-base-200">
10+
<main class="flex-1 relative h-full ">
1111

1212
<div class="p-10">
1313
<div class="mx-auto max-w-6xl w-full ">

src/views/pages/apps.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ <h2 class="font-medium text-2xl">Apps</h2>
99
<div class="grid grid-cols-3 gap-5 mt-5">
1010
<% if (apps.length) { %>
1111
<% apps.forEach(app => { %>
12-
<div class="card bg-base-100 card-bordered">
12+
<div class="card bg-base-100 card-bordered shadow-xl">
1313
<div class="card-body">
1414
<a class="link" href="/apps/<%= app.id %>"><h4><%= app.name %></h4></a>
1515
</div>

src/views/pages/home.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<div class="flex flex-col justify-center items-center min-h-screen ">
1+
<div class="flex flex-col justify-center items-center min-h-screen">
22

3-
<div class="card bg-base-100 shadow-xl gap-10 min-w-[400px] card-bordered">
3+
<div class="card bg-base-100 shadow-xl gap-10 min-w-[400px]">
44
<div class="card-body gap-6">
55

66
<div class="flex flex-col gap-1">

0 commit comments

Comments
 (0)