Skip to content

Commit d2c4ecb

Browse files
committed
fix(NotificationPopUp): buttons have no margins
1 parent b06a4e5 commit d2c4ecb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

meteor/client/lib/notifications/NotificationCenterPanel.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ class NotificationPopUp extends React.Component<IPopUpProps> {
110110
key={i}
111111
className={ClassNames(
112112
'btn',
113-
['default', 'primary'].indexOf(action.type) ? 'btn-primary' : 'btn-default'
113+
['default', 'primary'].indexOf(action.type) ? 'btn-primary' : 'btn-default',
114+
'mls'
114115
)}
115116
onClick={(e) => this.triggerEvent(action, e)}
116117
>

0 commit comments

Comments
 (0)