Skip to content

Commit

Permalink
typo & fix index screen size
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewDTR committed Nov 11, 2024
1 parent 1b1b30d commit 1f52c06
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/about.astro
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import BaseLayout from "../layouts/BaseLayout.astro";
>
is being written in HTML for flexibility, but it just as easily could have been
done in markdown. Astro makes it insanely easy to design the components that
you'd like, and then implement them in layouts that you can implement as templates
you'd like, and then add them in layouts that you can implement as templates
for pages. This creates an elegant layered architecture, where -- at least in
my case -- I have a <a
href="https://github.com/AndrewDTR/website/blob/main/src/layouts/BaseLayout.astro"
Expand Down
11 changes: 8 additions & 3 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -189,14 +189,14 @@ allPosts.sort(
.writeup {
margin: 0;
}
p,
ul {
margin: 0;
padding: 0 10px;
}

ul {
padding-left: 0;
p {
margin: 0 0 10px 0;
padding: 0 10px;
}

.blog-list {
Expand All @@ -215,5 +215,10 @@ allPosts.sort(
width: 100%;
display: block;
}

.writeup2 {
margin-top: 12px;
margin-bottom: 5px;
}
}
</style>

0 comments on commit 1f52c06

Please sign in to comment.