Remove orange dot overlay from i in JarvisWordmark
Some checks failed
CI / Build · macos-14 · Debug (push) Has been cancelled
CI / Build · macos-15 · Debug (push) Has been cancelled
CI / Build · macos-14 · Release (push) Has been cancelled
CI / Build · macos-15 · Release (push) Has been cancelled

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Robin Kutesa
2026-06-20 21:43:56 +03:00
parent 9129315594
commit f5c9f4d9ae

View File

@@ -15,17 +15,7 @@ struct JarvisWordmark: View {
HStack(spacing: 0) { HStack(spacing: 0) {
Text("j").font(font).foregroundStyle(Palette.orange) Text("j").font(font).foregroundStyle(Palette.orange)
Text("arv").font(font).foregroundStyle(.white) Text("arv").font(font).foregroundStyle(.white)
// White "i" with an orange dot overlaid at the tittle position. Text("is").font(font).foregroundStyle(.white)
Text("i")
.font(font)
.foregroundStyle(.white)
.overlay(alignment: .top) {
Circle()
.fill(Palette.orange)
.frame(width: size * 0.17, height: size * 0.17)
.offset(y: size * 0.04)
}
Text("s").font(font).foregroundStyle(.white)
} }
} }
} }