Skip to content

Commit

Permalink
fix(client): fix narrow style of MkPostForm
Browse files Browse the repository at this point in the history
  • Loading branch information
tamaina authored and na2na-p committed May 10, 2023
1 parent 8615c4b commit 5a8c784
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions packages/frontend/src/components/MkPostForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5a8c784

Please sign in to comment.