This repository was archived by the owner on May 16, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<template >
22 <template v-for =" snack in snacksStore .snacks " :key =" snack .id " >
3- <v-snackbar v-model =" snack.show" v-bind =" snack" position =" fixed" >
3+ <v-snackbar v-model =" snack.show" v-bind =" snack" :location = " xs ? 'top' : 'bottom' " : position =" xsAndDown ? 'absolute' : ' fixed' " >
44 <div :style =" snack.ltr ? 'direction: ltr !important;' : ''" >
55 {{ snack.text }}
66 </div >
1515
1616<script setup>
1717import { useSnacksStore } from ' @/stores/snacks' ;
18+ import { useDisplay } from ' vuetify' ;
19+
20+ const { xs } = useDisplay ();
1821const snacksStore = useSnacksStore ();
1922 </script >
Original file line number Diff line number Diff line change 1010 <v-spacer ></v-spacer >
1111 <v-col cols =" 10" justify =" center" >
1212 <v-card >
13- <v-card-title class =" text-h5 " >אין פידים מתאימים להצגה</v-card-title >
13+ <v-card-title : class =" xs ? ' text-h6 text-center' : 'text-h5' " >אין פידים מתאימים להצגה</v-card-title >
1414 <v-card-text >
1515 ניתן להוסיף פידים חדשים באמצעות לחיצה על הכפתור "הוסף מקור חדש" בצד שמאל
1616 </v-card-text >
2525<script setup>
2626import { useFeedsStore } from ' @/stores/feeds'
2727import { computed , toRefs } from ' vue'
28+ import { useDisplay } from ' vuetify'
2829import FeedCard from ' @/components/FeedCard.vue'
2930
3031const feedStore = useFeedsStore ()
32+ const { xs } = useDisplay ()
3133
3234const $props = defineProps ({
3335 search: {
You can’t perform that action at this time.
0 commit comments