button = {
text: 'Notifications',
role: 'destructive',
icon: 'notifications-outline',
cssClass: 'menu-border-top',
handler: () => {
this.getMyNotificationPreferences()
}
buttons.push(button);
.menu-border-top {
background-color: red;
}
Where do I put this css in Ionic 5?? I’ve tried global.scss and just about everywhere else that I can think of!