🐛 bug: fix bug in Account Page

This commit is contained in:
sonnguyenkieio
2021-09-16 17:25:20 +07:00
parent 7561f29438
commit 533951ac78
2 changed files with 3 additions and 8 deletions

View File

@@ -16,7 +16,6 @@
margin: auto; margin: auto;
margin-bottom: 4rem; margin-bottom: 4rem;
@screen md { @screen md {
margin-left: 0 margin-left: 0
} }
@@ -59,13 +58,9 @@
@apply flex items-center justify-center; @apply flex items-center justify-center;
margin-top: 2.4rem; margin-top: 2.4rem;
margin-bottom: 2.4rem; margin-bottom: 2.4rem;
// padding: .8rem 1.6rem;
// color: #141414;
// border: 1px solid #141414;
// max-width: 8.8rem;
ButtonCommon { button div {
height: 700px; background-color: #F5F4F2 !important;
} }
@screen md { @screen md {

View File

@@ -47,7 +47,7 @@ const AccountInfomation = ({ account, onClick } : AccountInfomationProps) => {
</div> </div>
<div className={s.editInfoBtn}> <div className={s.editInfoBtn}>
<ButtonCommon onClick={showEditForm} type="light">Edit</ButtonCommon> <ButtonCommon onClick={showEditForm} type="light" size="small">Edit</ButtonCommon>
</div> </div>
</section> </section>
) )