@@ -10,6 +10,7 @@ import {request, shuffle, updateAddedNewAccount} from '../../utils'
10
10
import { useCreatedPasswordGuard } from '../../hooks'
11
11
import useLoading from '../../hooks/useLoading'
12
12
import { RPC_METHODS , ROUTES } from '../../constants'
13
+ import './index.css'
13
14
const { WALLET_IMPORT_MNEMONIC , ACCOUNT_GROUP_TYPE } = RPC_METHODS
14
15
const { HOME } = ROUTES
15
16
@@ -107,15 +108,15 @@ function ConfirmSeed() {
107
108
< TitleNav title = { t ( 'newAccount' ) } />
108
109
< main className = "px-3 pt-3 flex flex-col flex-1 justify-between" >
109
110
< div >
110
- < span className = "inline- block ml-1 mb-1 text-gray-80" >
111
+ < span className = "block ml-1 mb-1 text-gray-80" >
111
112
{ t ( 'confirmSeedTitle' ) }
112
113
</ span >
113
- < span className = "inline- block ml-1 text-xs text-gray-40" >
114
+ < span className = "block ml-1 text-xs text-gray-40" >
114
115
{ t ( 'confirmSeedContent' ) }
115
116
</ span >
116
117
< div
117
118
id = "mnemonicContainer"
118
- className = { `relative mt-4 px-3 pt-3 bg-bg rounded-sm flex flex-wrap justify-between z-10 ${
119
+ className = { `seed-word-container relative mt-4 px-3 pt-3 bg-bg rounded-sm flex flex-wrap z-10 ${
119
120
mnemonicError
120
121
? 'after:absolute after:inset-0 after:border-error after:border after:border-solid after:z-[-1]'
121
122
: ''
@@ -138,9 +139,9 @@ function ConfirmSeed() {
138
139
) }
139
140
< div
140
141
id = "buttonArrayContainer"
141
- className = { `${
142
+ className = { `seed-word-container ${
142
143
mnemonicError ? 'mt-4' : 'mt-10'
143
- } px-3 pt-3 flex flex-wrap justify-between `}
144
+ } px-3 pt-3 flex flex-wrap`}
144
145
>
145
146
{ buttonArray . map ( ( word , index ) => (
146
147
< Button
0 commit comments