Skip to content

Commit

Permalink
[trello.com/c/sI4VXuJa] Added border color to snackbar
Browse files Browse the repository at this point in the history
  • Loading branch information
IanaaDvlp committed Dec 23, 2024
1 parent d8a9c47 commit 306c233
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,12 @@ struct NotificationPresenterView: View {
isTextLimited: $isTextLimited,
model: model
)
.padding([.leading, .trailing], 15)
.padding([.leading, .trailing], 10)
.padding([.top, .bottom], 10)
.overlay(
RoundedRectangle(cornerRadius: 10)
.stroke(Color.init(uiColor:.adamant.chatInputBarBorderColor), lineWidth: 1)
)
.background(GeometryReader(content: processGeometry))
.expanded(axes: .horizontal)
.offset(y: verticalDragTranslation < .zero ? verticalDragTranslation : .zero)
Expand Down

0 comments on commit 306c233

Please sign in to comment.