Email reader mobile: force-disable overlay box-shadow with !important

This commit is contained in:
pewdiepie-archdaemon
2026-06-12 23:19:53 +09:00
parent 9e73912d24
commit 5212758698
+5 -2
View File
@@ -28348,10 +28348,13 @@ button .spinner-whirlpool {
}
}
/* Mobile: drop the overlay shadow (gradient fade alone reads cleaner
on phone screens) and lift the cluster 1px more. */
on phone screens) and lift the cluster 1px more. !important
needed because the @container query overlay rule above has the
same selector specificity and the cascade isn't reliably picking
the later rule when both fire. */
@media (max-width: 768px) {
.email-reader-meta > .email-reader-actions-inline {
box-shadow: none;
box-shadow: none !important;
margin-top: -10px;
}
}