File tree Expand file tree Collapse file tree 2 files changed +25
-4
lines changed Expand file tree Collapse file tree 2 files changed +25
-4
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,22 @@ export default function MenuButton() {
80
80
</ Link >
81
81
) }
82
82
</ Menu . Item >
83
+ < Menu . Item >
84
+ { ( { active } ) => (
85
+ < Link href = "/blog" >
86
+ < a
87
+ className = { classNames (
88
+ active
89
+ ? 'bg-gray-100 text-gray-900 dark:bg-gray-700 dark:text-white'
90
+ : 'text-gray-700 hover:bg-gray-200 dark:text-gray-200 dark:hover:bg-gray-700' ,
91
+ 'block w-full px-4 py-2 text-left text-base'
92
+ ) }
93
+ >
94
+ Blog
95
+ </ a >
96
+ </ Link >
97
+ ) }
98
+ </ Menu . Item >
83
99
< Menu . Item >
84
100
{ ( { active } ) => (
85
101
< Link href = "/license" >
Original file line number Diff line number Diff line change 27
27
@apply text-gray-500 dark:text-gray-300;
28
28
}
29
29
30
- p a , .prose a {
31
- @apply text-blue-500 dark:text-blue-300 no-underline hover:underline;
30
+ p a ,
31
+ .prose a {
32
+ @apply text-blue-500 no-underline hover:underline dark:text-blue-300;
32
33
}
33
34
34
35
.prose p code ,
35
36
li code {
36
- @apply text -gray-700 dark: text-white bg- gray-200 dark:bg-gray-600;
37
+ @apply bg -gray-200 text-gray-700 dark:bg-gray-600 dark:text-white ;
37
38
}
38
39
39
40
hr {
40
41
@apply border-gray-300 dark:border-gray-700;
41
42
}
42
43
43
44
thead tr th {
44
- @apply text -gray-700 dark: text-white bg- gray-200 dark:bg-gray-600;
45
+ @apply bg -gray-200 text-gray-700 dark:bg-gray-600 dark:text-white ;
45
46
}
46
47
47
48
.prose {
48
49
@apply text-gray-500 dark:text-gray-300;
49
50
}
51
+
52
+ .prose strong {
53
+ font-weight : 700 ;
54
+ }
You can’t perform that action at this time.
0 commit comments