diff --git a/src/components/Navigation.astro b/src/components/Navigation.astro index 6fb6976..fd1e80e 100644 --- a/src/components/Navigation.astro +++ b/src/components/Navigation.astro @@ -54,6 +54,7 @@ const backgroundColorNightMode = "#240046"; nav ul li { padding-bottom: 0.33rem; + padding-left: 0.5rem } nav ul li a { diff --git a/src/pages/index.astro b/src/pages/index.astro index 1080283..8e85e08 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -9,9 +9,9 @@ const textColorNightMode = "#f1dac4"; const linkColorNightMode = "#4cc9f0"; const emmaNews = [ - `
  • 01-16-2025 - i'm focusing on studying and trying to get used to the idea of pursuing interests because i can. i wrote a blog post today about how hard the concept is to me
  • `, `
  • 01-23-2025 - i'm working on moving my blog to blog.emmas.place it is hosted on weblog.lol, a part of the omg.lol service
  • `, - `
  • 02-20-2025 - i've been spending time learning how to use astro instead of hand coding my site. with time there will be a lot here. i like the way content is managed in astro
  • ` + `
  • 02-20-2025 - i've been spending time learning how to use astro instead of hand coding my site. with time there will be a lot here. i like the way content is managed in astro
  • `, + '
  • 03-10-2025 - the site is functionally where it was at pre astro migration. now i get to add the new things i\'ve been planning to add diff --git a/src/styles/global.css b/src/styles/global.css index 3db3082..4a1ab3a 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -99,6 +99,10 @@ ul { list-style-type: none; } +li { + padding-left: 0.5rem; +} + main section { font-size: 1rem; }