More tweaks

This commit is contained in:
hfcRed 2026-03-11 18:20:16 +01:00
parent 92dfb5f52b
commit 8df04753ea
5 changed files with 11 additions and 5 deletions

View File

@ -105,7 +105,8 @@
font-weight: var(--weight-semi);
border-radius: var(--radius-selector);
background-color: var(--color-bg-higher);
padding: var(--s-0-5) var(--s-2);
padding: 0 var(--s-2);
height: var(--selector-size-sm);
color: var(--color-text);
display: flex;
align-items: center;

View File

@ -111,7 +111,7 @@ function TeamLFGPost({
</div>
</div>
<Divider />
<div className="stack horizontal justify-between">
<div className="stack horizontal justify-between items-center">
<PostTime createdAt={post.createdAt} updatedAt={post.updatedAt} />
{post.author.id === user?.id ? (
<PostEditButton id={post.id} />

View File

@ -159,7 +159,7 @@ function MapButton({
<Check className={styles.mapButtonIcon} onClick={onClick} />
) : null}
{tiebreaker ? (
<div className={clsx(styles.mapButtonText, "text-info")}>Tiebreak</div>
<div className={styles.mapButtonText}>Tiebreak</div>
) : banned ? (
<div className={clsx(styles.mapButtonText, "text-error")}>Banned</div>
) : null}

View File

@ -42,7 +42,7 @@
.weaponName {
text-transform: uppercase;
font-weight: var(--weight-semi);
color: var(--color-text-high);
color: var(--color-text);
font-size: var(--font-2xs);
flex: 1;
min-width: 0;

View File

@ -498,7 +498,8 @@
}
}
.scrollbar {
.scrollbar,
textarea {
@supports not selector(::-webkit-scrollbar) {
scrollbar-width: thin;
scrollbar-color: var(--color-bg-higher) transparent;
@ -517,6 +518,10 @@
border: 4px solid transparent;
background-clip: content-box;
}
&::-webkit-scrollbar-corner {
background-color: transparent;
}
}
.stack {