fix(client): fix narrow style of MkPostForm

This commit is contained in:
tamaina 2023-04-13 11:27:21 +00:00
parent 93dcd1c98e
commit 55c10d0d88
1 changed files with 5 additions and 4 deletions

View File

@ -900,27 +900,28 @@ defineExpose({
}
.headerLeft {
display: grid;
grid-template-columns: repeat(2, minmax(36px, 50px));
grid-template-rows: minmax(40px, 100%);
display: flex;
flex: 0 1 100px;
}
.cancel {
padding: 0;
font-size: 1em;
height: 100%;
flex: 0 1 50px;
}
.account {
height: 100%;
display: inline-flex;
vertical-align: bottom;
flex: 0 1 50px;
}
.avatar {
width: 28px;
height: 28px;
margin: auto 0;
margin: auto;
}
.headerRight {