0
0
Fork 0

Add a follow button & follower count on follow notifications (#31433)

This commit is contained in:
Renaud Chaput 2024-08-16 12:00:59 +02:00 committed by GitHub
parent 622628a199
commit 32a78e56e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 68 additions and 15 deletions

View file

@ -10486,6 +10486,13 @@ noscript {
gap: 8px;
flex: 1 1 auto;
overflow: hidden;
container-type: inline-size;
@container (width < 350px) {
&__header time {
display: none;
}
}
&__header {
display: flex;
@ -10525,6 +10532,11 @@ noscript {
border-radius: 8px;
padding: 8px;
}
&__additional-content {
color: $darker-text-color;
margin-top: -8px; // to offset the parent's `gap` property
}
}
&__avatar-group {