We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecfb6b8 commit ca053dfCopy full SHA for ca053df
arduino-ide-extension/src/browser/theia/messages/notification-component.tsx
@@ -61,7 +61,9 @@ export class NotificationComponent extends TheiaNotificationComponent {
61
actions.map((action, index) => (
62
<button
63
key={messageId + `-action-${index}`}
64
- className="theia-button"
+ className={`theia-button ${
65
+ index !== actions.length - 1 ? 'secondary' : ''
66
+ }`}
67
data-message-id={messageId}
68
data-action={action}
69
onClick={this.onAction}
0 commit comments