File tree Expand file tree Collapse file tree
apps/storefront-telegram/app Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export default defineAppConfig({
5353 } ,
5454 drawer : {
5555 slots : {
56- content : '!max-h-10/12' ,
56+ content : '!max-h-10/12 ring-default ' ,
5757 } ,
5858 } ,
5959 navigationMenu : {
Original file line number Diff line number Diff line change 33 v-if =" isCartButtonShown"
44 variant =" solid"
55 color =" secondary"
6- class =" flex-1 transition-all duration-200 ease-in-out"
6+ class =" flex-1 transition-all duration-200 ease-in-out motion-preset-slide-down motion-duration-500 "
77 :ui =" {
88 base: 'px-4 py-2 h-14',
99 }"
Original file line number Diff line number Diff line change 3333 :key =" category.id"
3434 variant =" ghost"
3535 color =" neutral"
36- size =" lg "
37- class =" px-0 motion-preset-slide-left"
36+ size =" xl "
37+ class =" -ml-2 px-2 py-1.5 font-medium motion-preset-slide-left"
3838 :class =" [
3939 visibleCategory === category.slug
4040 ? 'font-semibold text-primary'
Original file line number Diff line number Diff line change 33 ref =" target"
44 class =" flex flex-col gap-3 mb-10"
55 >
6- <h2 :id =" category?.slug" class =" scroll-mt-34 text-2xl/5 font-semibold tracking-tight" >
6+ <h2 :id =" category?.slug" class =" scroll-mt-36 text-2xl/5 font-semibold tracking-tight" >
77 {{ category?.name }}
88 </h2 >
99
1010 <div class =" grid grid-cols-2 gap-2 items-start justify-between" >
11- <ProductCard
11+ <CatalogProductCard
1212 v-for =" product in products"
1313 :key =" product.id"
1414 :product-id =" product.id"
Original file line number Diff line number Diff line change 1010 </div >
1111
1212 <div class =" px-3 py-1 flex-1 flex flex-col gap-1" >
13- <p class =" text-sm/4 font-medium " >
13+ <p class =" text-sm/4 font-semibold " >
1414 {{ product?.name }}
1515 </p >
1616
Original file line number Diff line number Diff line change 2929 <UButton
3030 variant =" ghost"
3131 color =" primary"
32- class =" p-0 text-lg font-medium "
32+ class =" p-0 text-lg font-semibold "
3333 :label =" formatted"
3434 @click =" handleCall()"
3535 />
4040 variant =" ghost"
4141 to =" https://vk.com/sushiloveru"
4242 target =" _blank"
43- color =" neutral "
43+ color =" primary "
4444 size =" xl"
4545 icon =" simple-icons:vk"
4646 class =" p-0"
4747 :ui =" {
4848 leadingIcon: 'size-8',
4949 }"
50+ @click =" vibrate()"
5051 />
5152 </div >
5253 </PageContainer >
@@ -61,7 +62,7 @@ const channelStore = useChannelStore()
6162
6263const tel = ' 79959999999'
6364const formatted = parsePhoneNumberWithError (tel , ' RU' ).format (' INTERNATIONAL' )
64- const formattedToCall = ` tel:${tel } `
65+ const formattedToCall = ` tel:+ ${tel } `
6566
6667async function handleCall() {
6768 vibrate ()
You can’t perform that action at this time.
0 commit comments