幅の狭い端末でMkPostFormの下部ボタンがオーバーフローするのを修正
This commit is contained in:
parent
35fd0a7fc2
commit
b77b564fa1
|
@ -1226,19 +1226,16 @@ defineExpose({
|
|||
|
||||
.footerLeft {
|
||||
flex: 1;
|
||||
display: grid;
|
||||
grid-auto-flow: row;
|
||||
grid-template-columns: repeat(auto-fill, minmax(42px, 1fr));
|
||||
grid-auto-rows: 40px;
|
||||
display: flex;
|
||||
height: 40px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.footerRight {
|
||||
flex: 0;
|
||||
margin-left: auto;
|
||||
display: grid;
|
||||
grid-auto-flow: row;
|
||||
grid-template-columns: repeat(auto-fill, minmax(42px, 1fr));
|
||||
grid-auto-rows: 40px;
|
||||
display: flex;
|
||||
height: 40px;
|
||||
direction: rtl;
|
||||
}
|
||||
|
||||
|
@ -1248,6 +1245,7 @@ defineExpose({
|
|||
margin: 0;
|
||||
font-size: 1em;
|
||||
width: auto;
|
||||
min-width: 42px;
|
||||
height: 100%;
|
||||
border-radius: 6px;
|
||||
|
||||
|
|
Loading…
Reference in New Issue