fix: add a way to close the invite box

This commit is contained in:
Andy Burke 2025-10-08 19:07:21 -07:00
parent 32cec2baab
commit 8337f81b85
2 changed files with 50 additions and 5 deletions

View file

@ -755,6 +755,35 @@ body[data-perms*="files.write.own"] [data-requires-permission="files.write.own"]
border-radius: 100px;
}
/* ICON - CLOSE */
.icon.close {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--icon-scale, 1));
width: 22px;
height: 22px;
border: 2px solid;
border-radius: var(--border-radius);
}
.icon.close::after,
.icon.close::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
width: 12px;
height: 2px;
background: currentColor;
transform: rotate(45deg);
border-radius: var(--border-radius);
top: 8px;
left: 3px;
}
.icon.close::after {
transform: rotate(-45deg);
}
/* ICON - CONTROLLER */
.icon.controller {
box-sizing: border-box;