Files
Huntarr.io/frontend/static/css/mobile-fix.css

18 lines
490 B
CSS

/*
* Simple fix for mobile user icon when local bypass is enabled
* This ensures the icon is properly hidden in both desktop and mobile views
*/
/* Apply important flag to ensure this takes precedence */
.hide-for-bypass {
display: none !important;
}
/* Mobile-specific targeting */
@media (max-width: 768px) {
/* Ensure user nav is hidden in mobile view when it has the hidden style applied */
#userNav[style*="display: none"] {
display: none !important;
}
}