From 2ba6821fae6a7d8ff08be5f82ca06405deb5e083 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Sat, 24 May 2025 12:24:18 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Adjust=20spacing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/stylesheets/style.css | 9 +++++++++ views/header.ejs | 2 +- views/index.ejs | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index 6b5ab6c..237dedf 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -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%; } diff --git a/views/header.ejs b/views/header.ejs index 77bfc1a..5a0a4c9 100644 --- a/views/header.ejs +++ b/views/header.ejs @@ -16,7 +16,7 @@
-
+

<%= title %>

diff --git a/views/index.ejs b/views/index.ejs index 4c7430c..6f98e2d 100644 --- a/views/index.ejs +++ b/views/index.ejs @@ -1,6 +1,6 @@ <%- include('header'); -%> -
+

Welcome to the <%= title %> EJS Template

This is a simple example of using EJS for templating.