1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-19 05:09:40 +02:00

Style/update mobile styles (#1008)

* update styling for mobile

* remove Coming Soon
This commit is contained in:
Hayden 2022-02-26 14:00:55 -09:00 committed by GitHub
parent faf88ff820
commit 6a5fd8e4f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 42 additions and 24 deletions

View file

@ -1,6 +1,13 @@
<template>
<div>
<v-chip v-for="(time, index) in allTimes" :key="index" label color="accent custom-transparent" class="ma-1">
<v-chip
v-for="(time, index) in allTimes"
:key="index"
:small="$vuetify.breakpoint.smAndDown"
label
color="accent custom-transparent"
class="ma-1"
>
<v-icon left>
{{ $globals.icons.clockOutline }}
</v-icon>
@ -58,7 +65,7 @@ export default defineComponent({
return {
showCards,
allTimes,
}
};
},
});
</script>