Filter layout small (#2458)

* improve feed layout on small screens

* improve feed layout on small screens
This commit is contained in:
Robert Kleinschuster
2023-05-26 17:30:44 +02:00
committed by GitHub
parent ab991b4df2
commit 9b5f9e1440
4 changed files with 46 additions and 39 deletions

View File

@@ -1,6 +1,6 @@
<template>
<label for="ddlSortBy" v-t="'actions.sort_by'" />
<select id="ddlSortBy" v-model="selectedSort" class="select w-auto">
<select id="ddlSortBy" v-model="selectedSort" class="select flex-grow">
<option v-for="(value, key) in options" v-t="`actions.${key}`" :key="key" :value="value" />
</select>
</template>