Style fix
This commit is contained in:
@@ -63,7 +63,11 @@ const AccountPage: React.FC<DispatchProp & UserModelState & AccountModelState> =
|
||||
title="account.nickname"
|
||||
message={user.nickname}
|
||||
showGo={false}
|
||||
onClick={() => dispatch({ type: 'account/onUpdateState', nameEditable: true })}
|
||||
onClick={() => dispatch({
|
||||
type: 'account/onUpdateState',
|
||||
nameEditable: true,
|
||||
nameInput: user.nickname,
|
||||
})}
|
||||
/>
|
||||
<AccountItem
|
||||
className="group"
|
||||
|
||||
@@ -65,6 +65,7 @@
|
||||
}
|
||||
|
||||
.card {
|
||||
flex-shrink: 0;
|
||||
align-self: stretch;
|
||||
background-color: white;
|
||||
padding: 20px;
|
||||
|
||||
@@ -30,6 +30,7 @@
|
||||
.card {
|
||||
background-color: #fff;
|
||||
margin: 10px;
|
||||
padding-bottom: 20px;
|
||||
box-shadow: 1px 1px 8px rgba(0, 0, 0, .2);
|
||||
min-height: 60%;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user