We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 781b6da commit cbda520Copy full SHA for cbda520
src/components/Journal.tsx
@@ -277,6 +277,7 @@ export function JournalPanel() {
277
<button
278
class="p-1.5 rounded hover:bg-white/10 transition-colors"
279
onClick={() => journal.navigateMonth(-1)}
280
+ title="Previous month"
281
>
282
<Icon name="chevron-left" class="w-5 h-5" style={{ color: "var(--text-weak)" }} />
283
</button>
@@ -290,6 +291,7 @@ export function JournalPanel() {
290
291
292
293
onClick={() => journal.navigateMonth(1)}
294
+ title="Next month"
295
296
<Icon name="chevron-right" class="w-5 h-5" style={{ color: "var(--text-weak)" }} />
297
0 commit comments