Skip to content

Commit fffd63a

Browse files
committed
Quickfix for Field borders on IOS 26
1 parent bf53a5e commit fffd63a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/Sources/SharedUI/Field.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ public struct Field: View {
4949
.padding(.vertical, 15)
5050
.padding(.horizontal, 12)
5151
.background {
52-
RoundedRectangle(cornerRadius: 14)
52+
RoundedRectangle(cornerRadius: isLiquidGlass ? 28 : 14)
5353
.fill(Color(.Background.teritary))
5454
.onTapGesture {
5555
isFocused = true
5656
}
5757
}
5858
.overlay {
59-
RoundedRectangle(cornerRadius: 14)
59+
RoundedRectangle(cornerRadius: isLiquidGlass ? 28 : 14)
6060
.strokeBorder(Color(.Separator.primary))
6161
}
6262

0 commit comments

Comments
 (0)