use guildDesc

This commit is contained in:
lizzie
2026-08-01 22:36:59 +00:00
parent 191ca7c548
commit 45f63bebb7
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -157,11 +157,11 @@ class Emoji {
guildText.classList.add("flexttb", "guildEmojiText");
const guildName = document.createElement("span");
guildName.id = "guildName";
guildName.classList.add("guildName");
guildName.textContent = lookup.guild.name;
const guildDesc = document.createElement("span");
guildDesc.id = "guildDesc";
guildDesc.classList.add("guildDesc");
const discoverable = lookup.guild.features.find((_) => _ === "DISCOVERABLE");
if (discoverable) {
if (lookup.guild.description) {
+6 -6
View File
@@ -5197,12 +5197,12 @@ img.error::after {
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;
}
}
.guildDesc {
color: var(--secondary-text-soft);
font-size: 0.9em;
max-height: 15em;
overflow-y: scroll;
}
.optionElement:has(.friendGroupSelect) {