I need help aligning two input text boxes to the right in the same line within a container. Here is my code snippet:
I am working with el-form, el-row, and el-col.
.search__app {
display: flex;
margin-left:auto;
font-size: 6px;
border-radius: 10px;
border: none;
}
.search__portfolio .filter_option {
width: 200px;
margin-bottom: 10px;
}
.search__portfolio .search_input {
width: 200px;
margin-top: 7px;
}
<el-form>
<el-row :gutter="15"
class="search__app">
<el-col class="filter_option">
<el-input placeholder="Search product based on name"
aria-label="Search product based on name"
@keyup.enter.native="searchProduct"
v-model="filters"></el-input>
</el-col><el-col class="search_input">
<el-input placeholder="Search category based on name"
aria-label="Search category based on name"
@keyup.enter.native="searchCategory"
v-model="filterText">
</el-input>
</el-col>
</el-row>
</el-form>
Currently, both text boxes are aligned to the left side and not on the same line. What changes should I make in my code to align them to the right?