Skip to content

Commit a81b261

Browse files
fix: minor style changes
1 parent 55a530a commit a81b261

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

app/assets/css/index.scss

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
html {
2-
&.dark-mode {
3-
--at-apply: "bg-#050505"
4-
}
1+
html.dark-mode {
2+
--at-apply: "bg-black"
53
}

app/components/navbar.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<img
55
src="https://github.com/HigherOrderLogic.png"
66
alt="Logo"
7-
class="border-rd-full w-12 h-a dark:(outline-#f5f5f5 outline-solid)"
7+
class="border-rd-full w-12 h-a dark:(outline-white outline-solid)"
88
>
99
</nuxt-link>
1010
<div class="w-full" />
11-
<nav class="flex flex-items-center gap-4 dark:text-#f5f5f5">
11+
<nav class="flex flex-items-center gap-4 text-[--un-prose-links]">
1212
<nuxt-link to="/blogs">
1313
Blogs
1414
</nuxt-link>

app/layouts/default.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
<template>
2-
<div class="font-normal font-[Inter_Variable] w-full">
2+
<div class="font-normal font-[Inter_Variable] w-full prose-neutral dark:prose-invert">
33
<div>
44
<navbar />
5-
<div class="m-a lg:prose lt-md:px-4 prose-neutral dark:prose-invert">
5+
<div class="m-a lg:prose lt-md:px-4">
66
<slot />
7+
<div class="h-8" />
78
<cd />
89
</div>
910
</div>

app/pages/blogs/index.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ useHead({ title: 'Blogs' })
77
<h1>Blogs</h1>
88
<content-list v-slot="{ list }" path="/blogs">
99
<template v-for="blog in list.sort((a, b) => +new Date(a.date) - +new Date(b.date))" :key="blog._path">
10-
<h2>
10+
<h3>
1111
<nuxt-link :to="blog._path">
1212
{{ blog.title }}
1313
</nuxt-link>
14-
</h2>
15-
<p class="pl-4">
14+
</h3>
15+
<p>
1616
{{ useDateFormat(blog.date, 'DD MMM YYYY') }}
1717
</p>
1818
</template>

0 commit comments

Comments
 (0)