feat: mutual guilds box be the same size as mutual friends

Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie
2026-07-30 00:26:03 +00:00
parent 875b3fb17d
commit f0370b1610
2 changed files with 2 additions and 16 deletions
+1 -15
View File
@@ -19,19 +19,6 @@ body {
background: color-mix(in srgb, var(--green), 20% white);
}
}
.mutFriends {
display: flex;
flex-direction: column;
align-items: stretch;
.createdWebhook {
flex-grow: 1;
background: var(--primary-bg);
margin-bottom: 6px;
width: 100%;
box-sizing: border-box;
}
}
.createdWebhook {
display: flex;
align-items: center;
@@ -4345,12 +4332,11 @@ fieldset input[type="radio"] {
.traceBars {
padding: 10px 0px;
}
.mutGuildBox {
.mutGuildBox, .mutFriends {
background: var(--primary-bg);
padding: 6px;
cursor: pointer;
margin-top: 6px;
img {
width: 48px !important;
height: 48px !important;
+1 -1
View File
@@ -803,7 +803,7 @@ class User extends SnowFlake {
createWidget(guild?: Guild) {
guild = this.localuser.guilds.get("@me") as Guild;
const div = document.createElement("div");
div.classList.add("flexltr", "createdWebhook");
div.classList.add("mutFriends", "flexltr");
//TODO make sure this is something I can actually do here
const name = document.createElement("b");
name.textContent = this.name;