mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-22 16:05:12 +00:00
fix(client): fix narrow style of MkPostForm
This commit is contained in:
parent
93dcd1c98e
commit
55c10d0d88
1 changed files with 5 additions and 4 deletions
|
@ -900,27 +900,28 @@ defineExpose({
|
||||||
}
|
}
|
||||||
|
|
||||||
.headerLeft {
|
.headerLeft {
|
||||||
display: grid;
|
display: flex;
|
||||||
grid-template-columns: repeat(2, minmax(36px, 50px));
|
flex: 0 1 100px;
|
||||||
grid-template-rows: minmax(40px, 100%);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.cancel {
|
.cancel {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
flex: 0 1 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.account {
|
.account {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
|
flex: 0 1 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar {
|
.avatar {
|
||||||
width: 28px;
|
width: 28px;
|
||||||
height: 28px;
|
height: 28px;
|
||||||
margin: auto 0;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.headerRight {
|
.headerRight {
|
||||||
|
|
Loading…
Reference in a new issue