Skip to content

Commit

Permalink
chore: fix indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
shivan-s committed Oct 27, 2024
1 parent b13db8b commit 9d5706e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
18 changes: 15 additions & 3 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ figure,
small,
em,
strong,
ol,
ul,
h1,
h2,
h3,
Expand All @@ -74,6 +72,11 @@ h6 {
padding: 0;
}

ol,
ul {
list-style-position: inside;
}

p {
font-size: var(--normal-size);
}
Expand Down Expand Up @@ -137,7 +140,7 @@ body > header {
}
}

div.tags {
aside.tags {
font-family:
Optician Sans,
sans-serif;
Expand Down Expand Up @@ -333,6 +336,10 @@ body {
serif;
}

hr {
width: 100%;
}

main {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -383,6 +390,11 @@ div.content {
margin: var(--normal-gap) 0rem;
}

& blockquote {
border-left: 2px solid var(--text-color);
padding-left: var(--normal-gap);
}

& p ~ ul,
p ~ ol {
margin-bottom: none;
Expand Down
5 changes: 4 additions & 1 deletion content/posts/test-post/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,7 @@ Lorem `code`
```ts
let name: string;
console.log("Hello World");
```
```

> Testing
> Hello
4 changes: 3 additions & 1 deletion layouts/posts/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ <h1>{{ .Title }}</h1>
</details>
</aside>
<div class="content">{{ .Content }}</div>
<aside>
<hr />
<aside class="tags">
{{ partial "tags.html" (dict "taxonomy" "tags" "page" .) }}
</aside>
<hr />
<footer>
{{ if .Prev }}
{{ with .Prev }}
Expand Down

0 comments on commit 9d5706e

Please sign in to comment.