fix: adjust speed pill position — was clipped at bottom, now 16pt above safe area
All checks were successful
Security Checks / dependency-audit (push) Successful in 14s
Security Checks / secret-scanning (push) Successful in 4s
Security Checks / dockerfile-lint (push) Successful in 3s

This commit is contained in:
Yusuf Suleman
2026-04-04 08:47:07 -05:00
parent a39e0377b5
commit 416a6ed3f8

View File

@@ -117,7 +117,7 @@ struct MainTabView: View {
.padding(.vertical, 10)
.background(.regularMaterial, in: Capsule())
.shadow(color: .black.opacity(0.15), radius: 12, y: 4)
.padding(.bottom, -40)
.padding(.bottom, 16)
.transition(.move(edge: .bottom).combined(with: .opacity))
}
.animation(.spring(duration: 0.3), value: isAutoScrolling)