File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -456,7 +456,12 @@ body {
456456/* ===== SECTION 11: CRITICAL FIX: TABLET/IPAD NAVBAR BEHAVIOR ===== */
457457@media screen and (max-width : 996px ) {
458458 /* Hide TOP navbar items on mobile (not sidebar) */
459- .navbar__items .navbar__item : not (.navbar__toggle ): not (.navbar__brand ) {
459+
460+ /*
461+ * This hides all navbar items on small screens, *except* for the
462+ * toggle, brand, and the item :has() the GitHub auth button.
463+ */
464+ .navbar__items .navbar__item : not (.navbar__toggle ): not (.navbar__brand ): not (: has (# firebase-auth-github-navbar )) {
460465 display : none !important ;
461466 }
462467
@@ -1667,3 +1672,9 @@ html[data-theme="light"] [data-slot="card-header"].bg-gradient-to-br {
16671672 backdrop-filter : none !important ;
16681673 mix-blend-mode : normal !important ;
16691674}
1675+
1676+ @media screen and (max-width : 1110px ) {
1677+ .github-text {
1678+ display : none !important ;
1679+ }
1680+ }
You can’t perform that action at this time.
0 commit comments