File tree Expand file tree Collapse file tree 4 files changed +10
-11
lines changed Expand file tree Collapse file tree 4 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 1
- html {
2
- & .dark-mode {
3
- --at-apply : " bg-#050505"
4
- }
1
+ html .dark-mode {
2
+ --at-apply : " bg-black"
5
3
}
Original file line number Diff line number Diff line change 4
4
<img
5
5
src =" https://github.com/HigherOrderLogic.png"
6
6
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)"
8
8
>
9
9
</nuxt-link >
10
10
<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] " >
12
12
<nuxt-link to =" /blogs" >
13
13
Blogs
14
14
</nuxt-link >
Original file line number Diff line number Diff line change 1
1
<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 " >
3
3
<div >
4
4
<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" >
6
6
<slot />
7
+ <div class =" h-8" />
7
8
<cd />
8
9
</div >
9
10
</div >
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ useHead({ title: 'Blogs' })
7
7
<h1 >Blogs</h1 >
8
8
<content-list v-slot =" { list }" path =" /blogs" >
9
9
<template v-for =" blog in list .sort ((a , b ) => + new Date (a .date ) - + new Date (b .date ))" :key =" blog ._path " >
10
- <h2 >
10
+ <h3 >
11
11
<nuxt-link :to =" blog._path" >
12
12
{{ blog.title }}
13
13
</nuxt-link >
14
- </h2 >
15
- <p class = " pl-4 " >
14
+ </h3 >
15
+ <p >
16
16
{{ useDateFormat(blog.date, 'DD MMM YYYY') }}
17
17
</p >
18
18
</template >
You can’t perform that action at this time.
0 commit comments