/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 26 2026 | 15:49:26 */
/**
 * CSL - Group/Profile Nav Mobile Spacing
 * v1.0
 * Tightens line-height and vertical padding on BuddyBoss's native
 * group/profile subnav tabs (#object-nav), mobile only. Desktop is
 * untouched - the rules only fire inside the max-width media query.
 *
 * Confirmed against live DOM pulled from the MLB Channel page:
 *   nav#object-nav > ul > li.bp-groups-tab > a > div.bb-single-nav-item-point
 *
 * @since 1.0 First pass. Values here are a reasonable starting point,
 *            not pixel-matched against your phone yet - check it live
 *            and tell me if it needs to go tighter/looser.
 */
@media (max-width: 600px) {
	#object-nav li a {
		padding-top: 6px;
		padding-bottom: 6px;
	}
	#object-nav .bb-single-nav-item-point {
		line-height: 1.2;
	}
	#object-nav li {
		margin-bottom: 0;
	}
}