CSS para ocultar as abas Atividade ou Mensagens na página de detalhes do grupo

FYI everyone. Here’s the CSS to hide the Messages and Activitiy tabs on desktop and mobile view.

Desktop

.activity.ember-view, .messages.ember-view {
    display: none;
}

Mobile

.mobile-nav .activity.ember-view, .mobile-nav .messages.ember-view{
    display: none !important;
}
3 curtidas