Merge branch 'pr-484'

This commit is contained in:
Mathium05
2026-08-09 19:22:47 -05:00
2 changed files with 9 additions and 0 deletions
+2
View File
@@ -160,9 +160,11 @@ class Emoji {
guildText.classList.add("flexttb", "guildEmojiText");
const guildName = document.createElement("span");
guildName.classList.add("guildName");
guildName.textContent = lookup.guild.name;
const guildDesc = document.createElement("span");
guildDesc.classList.add("guildDesc");
const discoverable = lookup.guild.features.find((_) => _ === "DISCOVERABLE");
if (discoverable) {
if (lookup.guild.description) {
+7
View File
@@ -5225,6 +5225,13 @@ img.error::after {
.guildEmojiText {
display: flex;
justify-content: center;
word-break: break-all;
}
.guildDesc {
color: var(--secondary-text-soft);
font-size: 0.9em;
max-height: 15em;
overflow-y: scroll;
}
.optionElement:has(.friendGroupSelect) {