Fix unfollow button being out of frame on small screens on old browsers (#29923)

This commit is contained in:
Claire 2024-04-15 13:56:48 +02:00 committed by GitHub
parent 1549e6a9dc
commit 4117c8f6b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 2 deletions

View File

@ -7863,8 +7863,13 @@ noscript {
}
}
@container account-header (max-width: 372px) {
.optional {
.optional {
@container account-header (max-width: 372px) {
display: none;
}
// Fallback for older browsers with no container queries support
@media screen and (max-width: 372px + 55px) {
display: none;
}
}