Follow-up

This commit is contained in:
Alexander Zinchuk 2025-08-29 22:46:36 +02:00
parent 31d8e3c7b9
commit 5cb6236879
3 changed files with 11 additions and 10 deletions

View File

@ -118,6 +118,10 @@
} }
} }
.ListItem-button {
height: 72px;
}
.ripple-container { .ripple-container {
z-index: var(--z-chat-ripple); z-index: var(--z-chat-ripple);
} }
@ -466,7 +470,7 @@
.ChatTags { .ChatTags {
color: var(--color-chat-active); color: var(--color-chat-active);
background-color: #fff; background-color: #ffffffab;
} }
} }
} }

View File

@ -1,9 +1,12 @@
.wrapper { .wrapper {
display: flex; display: flex;
gap: 0.25rem; gap: 0.25rem;
padding-top: 0.25rem;
} }
.tag { .tag {
--custom-emoji-size: 0.75rem;
position: relative; position: relative;
flex-shrink: 0; flex-shrink: 0;
@ -12,21 +15,15 @@
padding: 0 0.25rem; padding: 0 0.25rem;
border-radius: 0.25rem; border-radius: 0.25rem;
font-size: 0.5625rem; font-size: 0.625rem;
font-weight: var(--font-weight-medium); font-weight: var(--font-weight-medium);
line-height: 0.75rem; line-height: 0.875rem;
color: var(--accent-color); color: var(--accent-color);
text-align: center; text-align: center;
text-transform: uppercase; text-transform: uppercase;
background-color: var(--accent-background-color); background-color: var(--accent-background-color);
:global(.emoji) {
width: 0.5625rem;
height: 0.5625rem;
margin-top: -0.0625rem;
}
&ColorMore { &ColorMore {
color: var(--color-text-secondary); color: var(--color-text-secondary);
} }

View File

@ -57,7 +57,7 @@ const ChatTags = ({
text: folder.title.text, text: folder.title.text,
entities: folder.title.entities, entities: folder.title.entities,
noCustomEmojiPlayback: folder.noTitleAnimations, noCustomEmojiPlayback: folder.noTitleAnimations,
emojiSize: 9, emojiSize: 12,
})} })}
</div> </div>
); );