/**
 * Tenant Frontend Overrides
 *
 * Hides the WordPress admin bar and duplicate page titles on tenant subsites.
 *
 * @package RefactorFactoryTenant
 * @since 1.0.5
 */

/* Hide WordPress admin bar on frontend */
#wpadminbar,
html.admin-bar {
    margin-top: 0 !important;
}
#wpadminbar {
    display: none !important;
}

/* Hide WordPress page title - shortcode provides the heading */
body.page .entry-title,
body.page .page-title,
body.page h1.wp-block-post-title,
body.page .ast-title-bar-title,
body.page .page-header h1,
body.page article.page > header h1 {
    display: none !important;
}
