mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-05 20:56:13 -05:00
More tweaks
This commit is contained in:
parent
92dfb5f52b
commit
8df04753ea
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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} />
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user