from ✅ダイアログの見た目を改善する Scrapbox Dialogの右の隙間を修正
after:
before:
movie:
beforeではflexのitemsの中のコンテンツにクラス名をつけて、CSSを当ててサイズをコントロールしていた
ボタンを包むdivはflex-basis: auto;で中身のサイズにして固定
入力欄のdivはbasisを固定値で入れた上でgrowで空きスペースいっぱいに広がらせる
div.input-icon {
flex-basis: 120px;
flex-grow: 1;
}
div.input-icon > div {
width: 100%;
}