mirror of
https://github.com/plexguide/Huntarr.io.git
synced 2026-04-22 12:06:51 -04:00
18 lines
490 B
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;
|
|
}
|
|
}
|