Skip to content

Commit 2407576

Browse files
authored
fix: fixes #41 -- tightens everything up (#42)
1 parent bed221b commit 2407576

File tree

6 files changed

+5
-7
lines changed

6 files changed

+5
-7
lines changed

assets/css/main.css

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,6 @@ code {
170170

171171
.main :is(ul, ol) {
172172
@apply list-outside;
173-
margin-bottom: 16px;
174-
padding-left: 2em;
175173
}
176174

177175
.main ul {

layouts/_default/baseof.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!doctype html>
22
<html
3-
class="bg-neutral-100 text-neutral-900 dark:bg-neutral-900 dark:text-neutral-50"
3+
class="bg-neutral-100 text-neutral-900 dark:bg-neutral-900 text-sm md:text-base dark:text-neutral-50"
44
lang="{{ site.Language.LanguageCode }}"
55
dir="{{ or site.Language.LanguageDirection `ltr` }}">
66
<head>

layouts/partials/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<ul class="list-inline footer-links inline-flex">
1+
<ul class="list-inline footer-links inline-flex mt-2 mb-1">
22
{{- range .Site.Data.social.social_icons }}
33
{{- if isset $.Site.Params.Author .id }}
44
<li>

layouts/partials/post-meta.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{{- $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
33
{{- $dateHuman := .Date | time.Format ":date_long" }}
44
{{- $lastmod := .Lastmod | time.Format ":date_long" }}
5-
<p class="tight font-semibold md:underline a:no-underline md:underline-offset-4">
5+
<p class="tight font-semibold md:underline a:no-underline md:underline-offset-4 text-xs md:text-small italic">
66
Published:
77
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
88
{{- if .Lastmod }}

layouts/posts/single.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{ define "main" }}
22
{{ partial "post-meta.html" . }}
3-
<article class="post mb-16 mt-8">
3+
<article class="post">
44
{{ .Content | emojify }}
55
</article>
66
{{- partial "pager.html" . }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simpl",
3-
"version": "0.2.4",
3+
"version": "0.4.1",
44
"description": "A simpl(e) Hugo Theme",
55
"author": "@esacteksab",
66
"scripts": {

0 commit comments

Comments
 (0)