缺少代码差异信息,无法生成具体的commit message。请提供code differences内容以便分析并生成符合Angular规范的提交信息。
当您提供代码差异后,我将按照以下格式生成: ``` <type>(<scope>): <subject> <body> ``` 其中type会根据更改类型选择(feat、fix、docs、style、refactor等),scope表示影响范围,subject简要描述变更内容,body详细说明修改内容。
This commit is contained in:
@@ -9,7 +9,7 @@ struct TimelineRow: View {
|
||||
RoundedRectangle(cornerRadius: 8, style: .continuous)
|
||||
.fill(entry.kind.accent.opacity(0.12))
|
||||
Image(systemName: entry.kind.icon)
|
||||
.font(.system(size: 14, weight: .semibold))
|
||||
.font(.tjScaled( 14, weight: .semibold))
|
||||
.foregroundStyle(entry.kind.accent)
|
||||
}
|
||||
.frame(width: 36, height: 36)
|
||||
@@ -25,12 +25,12 @@ struct TimelineRow: View {
|
||||
|
||||
VStack(alignment: .leading, spacing: 2) {
|
||||
Text("\(entry.date.timelineLabel) · \(entry.subtitle)")
|
||||
.font(.system(size: 11))
|
||||
.font(.tjScaled( 11))
|
||||
.tracking(0.3)
|
||||
.foregroundStyle(Tj.Palette.text3)
|
||||
.lineLimit(1)
|
||||
Text(entry.title)
|
||||
.font(.system(size: 14, weight: .medium))
|
||||
.font(.tjScaled( 14, weight: .medium))
|
||||
.foregroundStyle(Tj.Palette.text)
|
||||
.lineLimit(1)
|
||||
.truncationMode(.tail)
|
||||
@@ -38,7 +38,7 @@ struct TimelineRow: View {
|
||||
Spacer(minLength: 8)
|
||||
if let trailing = entry.trailing {
|
||||
Text(trailing)
|
||||
.font(.system(size: 12, weight: .semibold, design: .monospaced))
|
||||
.font(.tjScaled( 12, weight: .semibold, design: .monospaced))
|
||||
.foregroundStyle(entry.trailingIsAlert ? Tj.Palette.brick : Tj.Palette.text2)
|
||||
.lineLimit(1)
|
||||
.fixedSize()
|
||||
|
||||
Reference in New Issue
Block a user