Welcome to the <%= title %> EJS Template
This is a simple example of using EJS for templating.
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 @@
This is a simple example of using EJS for templating.