fix: make search results count visible in dark mode

This commit is contained in:
2026-07-25 18:09:07 +04:00
parent acd3a44c55
commit 33646f8d19
2 changed files with 25 additions and 4 deletions
+24 -3
View File
@@ -3167,7 +3167,8 @@ i.icon-mastodon,
text-align: center;
margin-bottom: 20px;
padding: 10px;
background-color: #f9f9f9;
background-color: var(--tag-bg);
color: var(--text-secondary);
border-radius: 4px;
}
@@ -3527,11 +3528,31 @@ i.icon-mastodon,
}
}
/* Section « Tendances » (aside de l'accueil) : carte aérée et centrée */
.tags-section-container {
align-items: center;
justify-content: center;
text-align: center;
gap: 6px;
}
.tags-section-container .tags-section {
margin: 6px 0 2px;
padding: 4px 0 6px;
overflow-x: visible;
white-space: normal;
}
.tags-section-container .tag {
font-size: 1rem;
padding: 10px 22px;
}
/* Rangée d'emoji décorative au-dessus des hashtags « Tendances » (accueil) */
.trending-hashtag-emojis {
font-size: 1.15rem;
font-size: 1.35rem;
letter-spacing: 0.3em;
line-height: 1;
text-align: center;
margin: 0 0 12px;
margin: 4px 0 10px;
}