🐞 fix: Adjust spacing
This commit is contained in:
@@ -220,6 +220,15 @@
|
||||
.h-8 {
|
||||
height: calc(var(--spacing) * 8);
|
||||
}
|
||||
.min-h-\[70\] {
|
||||
min-height: 70;
|
||||
}
|
||||
.min-h-\[70dvh\] {
|
||||
min-height: 70dvh;
|
||||
}
|
||||
.min-h-\[70vdh\] {
|
||||
min-height: 70vdh;
|
||||
}
|
||||
.w-full {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<body>
|
||||
<main class="">
|
||||
<header class="bg-gray-200 w-full">
|
||||
<div class="container mx-auto flex justify-between items-center text-gray-800 p-4">
|
||||
<div class="container mx-auto flex justify-between items-center text-gray-800 py-4">
|
||||
<div class="flex items-center">
|
||||
<!-- <img src="/images/logo.png" alt="Logo" class="h-8 mr-2"> -->
|
||||
<h1 class=""><%= title %></h1>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<%- include('header'); -%>
|
||||
|
||||
<article class="container mx-auto py-4">
|
||||
<article class="container mx-auto py-4 min-h-[70dvh]">
|
||||
<h2>Welcome to the <%= title %> EJS Template</h2>
|
||||
<p>This is a simple example of using EJS for templating.</p>
|
||||
</article>
|
||||
|
||||
Reference in New Issue
Block a user