1👍
Here is one way, using flexbox
to keep items in a row, with one child taking up all the remaining space. Flexbox has a nice ability to override the child width and give you predictable results.
<div style='display:flex'>
<div style='flex:0 0 auto'>Item 1</div>
<div style='flex:1; background-color: yellow'>Item 2</div>
<div style='flex:0 0 auto'>Item 3</div>
</div>
1👍
in terms of the height, there is a height property for inputs and button
checkout here : https://vuetifyjs.com/en/api/v-input/#props-height
- [Vuejs]-Vue.js obtain toggle button value
- [Vuejs]-How do add elements from array into div element where id is equal with array element dealState number in vue.js
Source:stackexchange.com