Hey all, I was looking to remove the notification bell & user profile icon from an app of mine and found that this CSS works:
- Notification bell
.raf-icon-badge {
display:none;
}
- User profile icon
.stk-user-menu {
display:none;
}
Hey all, I was looking to remove the notification bell & user profile icon from an app of mine and found that this CSS works:
.raf-icon-badge {
display:none;
}
.stk-user-menu {
display:none;
}
Thanks for sharing @jasperflour!