Skip to content
This repository has been archived by the owner on Aug 11, 2024. It is now read-only.

Commit

Permalink
Move heart in notebook view
Browse files Browse the repository at this point in the history
  • Loading branch information
bfollington committed Feb 14, 2024
1 parent f6ddd58 commit dde4c8f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions xcode/Subconscious/Shared/Components/Common/EntryRow.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@ struct EntryRow: View {
.theme(base: highlight, slug: highlight)

Spacer()

if liked {
Image(systemName: "heart.fill")
.font(.caption)
.foregroundColor(highlight)
}

Text(
NiceDateFormatter.shared.string(
Expand All @@ -51,6 +45,12 @@ struct EntryRow: View {
)
.font(.subheadline)
.foregroundColor(highlight)

if liked {
Image(systemName: "heart.fill")
.font(.caption)
.foregroundColor(highlight)
}
}
.font(.callout)
.lineLimit(1)
Expand Down

0 comments on commit dde4c8f

Please sign in to comment.