diff --git a/app/features/lfg/components/LFGPost.module.css b/app/features/lfg/components/LFGPost.module.css index db327f868..9a4e73453 100644 --- a/app/features/lfg/components/LFGPost.module.css +++ b/app/features/lfg/components/LFGPost.module.css @@ -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; diff --git a/app/features/lfg/components/LFGPost.tsx b/app/features/lfg/components/LFGPost.tsx index 6e84c1ba9..42ff74c32 100644 --- a/app/features/lfg/components/LFGPost.tsx +++ b/app/features/lfg/components/LFGPost.tsx @@ -111,7 +111,7 @@ function TeamLFGPost({ -
+
{post.author.id === user?.id ? ( diff --git a/app/features/sendouq-settings/components/ModeMapPoolPicker.tsx b/app/features/sendouq-settings/components/ModeMapPoolPicker.tsx index a1a8b79c2..c52311dda 100644 --- a/app/features/sendouq-settings/components/ModeMapPoolPicker.tsx +++ b/app/features/sendouq-settings/components/ModeMapPoolPicker.tsx @@ -159,7 +159,7 @@ function MapButton({ ) : null} {tiebreaker ? ( -
Tiebreak
+
Tiebreak
) : banned ? (
Banned
) : null} diff --git a/app/form/fields/WeaponPoolFormField.module.css b/app/form/fields/WeaponPoolFormField.module.css index 9fb683895..a4fc130c9 100644 --- a/app/form/fields/WeaponPoolFormField.module.css +++ b/app/form/fields/WeaponPoolFormField.module.css @@ -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; diff --git a/app/styles/utils.css b/app/styles/utils.css index be7d7d939..9690b7b68 100644 --- a/app/styles/utils.css +++ b/app/styles/utils.css @@ -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 {