FIX: Collapse `Summarize` button on mobile (#726)

This commit is contained in:
Jan Cernik 2024-07-25 16:10:53 -03:00 committed by GitHub
parent d9dad56c6a
commit d58913b227
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 10 deletions

View File

@ -12,17 +12,15 @@
} }
} }
// Hide the Summarize label when there are many stats unless is mobile // Hide the Summarize label when there are many stats
&:has(.--many-stats):has(.top-replies) .topic-map__additional-contents { &:has(.--many-stats):has(.top-replies) .topic-map__additional-contents {
@media screen and (min-width: 476px) { button {
button { .d-icon {
.d-icon { margin: 0;
margin: 0; height: 1.2em;
height: 1.2em; }
} .d-button-label {
.d-button-label { display: none;
display: none;
}
} }
} }
} }