Skip to content

Commit fbba1d2

Browse files
fix(Simulator/screens/WordList): set no row gap to each list column
1 parent 06da479 commit fbba1d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Simulator/screens/CreateAccount/WordList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const WordList = ({ words, wordsSelected }: WordListProps) => {
2323
const sharedClasses = "m-0 flex flex-col gap-y-3 gap-x-8"
2424

2525
const classVariants = {
26-
initial: "gap-x-0",
26+
initial: "gap-y-0",
2727
}
2828

2929
const styles = cn(
@@ -88,7 +88,7 @@ export const WordList = ({ words, wordsSelected }: WordListProps) => {
8888
}
8989

9090
return (
91-
<div className="grid grid-cols-2 gap-x-7 whitespace-nowrap px-4 md:px-8">
91+
<div className="grid grid-cols-2 gap-x-7 whitespace-nowrap bg-background px-4 md:px-8">
9292
<OrderedList className={styles} start={1}>
9393
{words.map(wordMapping).slice(0, splitIndex)}
9494
</OrderedList>

0 commit comments

Comments
 (0)