Add uipadding to notifications (#589)

This commit is contained in:
James Onnen
2022-08-03 16:01:07 -07:00
committed by GitHub
parent e110f3726a
commit 41d7aaf323

View File

@@ -316,6 +316,12 @@ function App:render()
VerticalAlignment = Enum.VerticalAlignment.Bottom,
Padding = UDim.new(0, 5),
}),
padding = e("UIPadding", {
PaddingTop = UDim.new(0, 5);
PaddingBottom = UDim.new(0, 5);
PaddingLeft = UDim.new(0, 5);
PaddingRight = UDim.new(0, 5);
}),
notifs = e(Notifications, {
soundPlayer = self.props.soundPlayer,
notifications = self.state.notifications,