Update ingredient-parser.vue

This commit is contained in:
Daniel O'Connor 2025-02-06 21:23:33 +10:30 committed by GitHub
commit 6225baf2fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -99,12 +99,6 @@
</v-container> </v-container>
</v-container> </v-container>
</template> </template>
<style lang="css">
.v-card__actions {
flex-wrap: wrap;
overflow: truncate;
}
</style>
<script lang="ts"> <script lang="ts">
import { computed, defineComponent, ref, useContext, useRoute, useRouter, watch } from "@nuxtjs/composition-api"; import { computed, defineComponent, ref, useContext, useRoute, useRouter, watch } from "@nuxtjs/composition-api";
import { invoke, until } from "@vueuse/core"; import { invoke, until } from "@vueuse/core";
@ -412,3 +406,9 @@ export default defineComponent({
}, },
}); });
</script> </script>
<style lang="css">
.v-card__actions {
flex-wrap: wrap;
overflow: truncate;
}
</style>