Fix button group styles

before, the rounded-3xl could override rounded-none
This commit is contained in:
Sinclair Chen 2022-08-23 14:23:09 -07:00
parent bea94d58c5
commit 2f2edc8b44

View File

@ -82,7 +82,7 @@ export function BetInline(props: {
<div className="text-xl">Bet</div>
<YesNoSelector
className="space-x-0"
btnClassName="rounded-none first:rounded-l-2xl last:rounded-r-2xl"
btnClassName="rounded-l-none rounded-r-none first:rounded-l-2xl last:rounded-r-2xl"
selected={outcome}
onSelect={setOutcome}
isPseudoNumeric={isPseudoNumeric}