mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-25 15:16:07 +00:00
Add uipadding to notifications (#589)
This commit is contained in:
@@ -316,6 +316,12 @@ function App:render()
|
|||||||
VerticalAlignment = Enum.VerticalAlignment.Bottom,
|
VerticalAlignment = Enum.VerticalAlignment.Bottom,
|
||||||
Padding = UDim.new(0, 5),
|
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, {
|
notifs = e(Notifications, {
|
||||||
soundPlayer = self.props.soundPlayer,
|
soundPlayer = self.props.soundPlayer,
|
||||||
notifications = self.state.notifications,
|
notifications = self.state.notifications,
|
||||||
|
|||||||
Reference in New Issue
Block a user