Fix safari annoyingness
All checks were successful
Test, Build, Deploy / Test, Build, and Deploy (push) Successful in 1m2s
Test, Build, Deploy / Create Sentry Release (push) Successful in 6s

This commit is contained in:
2026-04-14 01:48:37 -04:00
parent 7d5ec1183c
commit 16ecab6881

View File

@@ -74,6 +74,18 @@ button:focus-visible {
display: none; display: none;
} }
/* Same thing as above but for Safari */
@media not all and (min-resolution: 0.001dpcm) {
@supports (-webkit-appearance: none) {
text-indent: -120px;
margin-left: -7em;
&::file-selector-button {
display: inline;
}
}
}
.desktop-nav { .desktop-nav {
visibility: visible; visibility: visible;
} }