From 4fd3364556a2744d68273db8a841ca635abb0c58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaume=20Sol=C3=ADs?= Date: Tue, 19 Dec 2023 11:46:23 +0100 Subject: [PATCH 1/8] cambios estilos --- src/css/app.scss | 11 +++++++++++ src/css/components/calendar-postalcode.scss | 14 +++++++++++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/src/css/app.scss b/src/css/app.scss index 6ce523d..a7f6fab 100644 --- a/src/css/app.scss +++ b/src/css/app.scss @@ -16,6 +16,10 @@ -moz-osx-font-smoothing: grayscale; } +html { + scroll-behavior: smooth; +} + ::selection { background-color: $primary-light; color: $primary; @@ -112,6 +116,13 @@ padding: 10px 20px; } + & .q-btn__content { + display: flex; + gap: 10px; + align-items: center; + justify-content: center; + } + @media only screen and (max-width: $med-xmd) { font-size: $font-16; } diff --git a/src/css/components/calendar-postalcode.scss b/src/css/components/calendar-postalcode.scss index 0398823..c1da11c 100644 --- a/src/css/components/calendar-postalcode.scss +++ b/src/css/components/calendar-postalcode.scss @@ -2,11 +2,23 @@ display: flex; gap: 9px; align-items: flex-end; - & svg { + &.calendar { + } + + & .custom-date-btn { margin-bottom: 4px; + &::before { + display: none; + } + } + + & > svg { + margin-bottom: 10px; } & .custom-block-content { + margin-bottom: -20px; + & .custom-head-paragraph, & .custom-main-paragraph { line-height: 20px; From 018238061a39ec6bee79c0bae9381543374b9820 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaume=20Sol=C3=ADs?= Date: Tue, 19 Dec 2023 11:47:00 +0100 Subject: [PATCH 2/8] =?UTF-8?q?A=C3=B1adir=20inputs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/@inputs/Calendar.vue | 120 ++++++++++++++++++++++++-- src/components/@inputs/PostalCode.vue | 60 ++++++++++++- src/components/@inputs/PriceRange.vue | 6 +- 3 files changed, 171 insertions(+), 15 deletions(-) diff --git a/src/components/@inputs/Calendar.vue b/src/components/@inputs/Calendar.vue index a7e08fa..782779d 100644 --- a/src/components/@inputs/Calendar.vue +++ b/src/components/@inputs/Calendar.vue @@ -1,22 +1,130 @@ - - diff --git a/src/components/@inputs/PostalCode.vue b/src/components/@inputs/PostalCode.vue index b12d09b..36309ef 100644 --- a/src/components/@inputs/PostalCode.vue +++ b/src/components/@inputs/PostalCode.vue @@ -1,22 +1,74 @@ - - diff --git a/src/components/@inputs/PriceRange.vue b/src/components/@inputs/PriceRange.vue index bfd8f31..35642ca 100644 --- a/src/components/@inputs/PriceRange.vue +++ b/src/components/@inputs/PriceRange.vue @@ -34,11 +34,7 @@ export default defineComponent({ setup() { const rangePriceStore = useRangePriceStore(); - const handleChange = (e: Event) => { - console.log(e); - }; - - return { rangePriceStore, handleChange }; + return { rangePriceStore }; }, }); From 6efa6963cb0388aa30d197b78f479cc25fb2a58e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaume=20Sol=C3=ADs?= Date: Tue, 19 Dec 2023 11:47:24 +0100 Subject: [PATCH 3/8] Cambios header --- src/components/header/NavLinks.vue | 20 ++++++++++---------- src/components/header/UserArea.vue | 14 ++++++-------- 2 files changed, 16 insertions(+), 18 deletions(-) diff --git a/src/components/header/NavLinks.vue b/src/components/header/NavLinks.vue index b1984a8..cee4bfc 100644 --- a/src/components/header/NavLinks.vue +++ b/src/components/header/NavLinks.vue @@ -2,23 +2,23 @@ diff --git a/src/components/header/UserArea.vue b/src/components/header/UserArea.vue index 0bf0327..c6efa5b 100644 --- a/src/components/header/UserArea.vue +++ b/src/components/header/UserArea.vue @@ -1,17 +1,15 @@ @@ -63,7 +61,6 @@ import { PropType, defineComponent, ref } from 'vue'; import { storeToRefs } from 'pinia'; import Calendar from 'src/components/@inputs/Calendar.vue'; import PostalCode from 'src/components/@inputs/PostalCode.vue'; -import IconMouse from 'src/components/icons/IconMouse.vue'; import IconSearch from 'src/components/icons/IconSearch.vue'; import { useMobileStore } from 'src/stores/mobileNav'; @@ -93,7 +90,7 @@ export default defineComponent({ screenWidth, }; }, - components: { IconMouse, IconSearch, Calendar, PostalCode }, + components: { IconSearch, Calendar, PostalCode }, }); @@ -138,10 +135,27 @@ export default defineComponent({ flex-wrap: wrap; border-radius: 10px 0 0 10px; overflow: hidden; - margin-bottom: 82px; + /* margin-bottom: 82px; */ + min-height: 150px; & .carousel-content-item { + display: flex; + align-items: center; padding: 27px 53px 34px 48px; flex: 1; + position: relative; + &:first-child::after { + content: ''; + position: absolute; + width: 1px; + opacity: 0.2; + background-color: $text-normal-100; + right: 0; + top: 27px; + bottom: 29px; + @media only screen and (max-width: $med-md) { + display: none; + } + } &.btn { &:focus, &:focus-visible { From 0f5b2627ec7debc7b5a5765d932040fe9138ad8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaume=20Sol=C3=ADs?= Date: Tue, 19 Dec 2023 11:52:54 +0100 Subject: [PATCH 7/8] mas cambios --- src/components/icons/IconArrowRightOne.vue | 14 + src/components/icons/credit-flags/IconAny.vue | 7 + .../icons/credit-flags/IconExprex.vue | 54 ++ .../icons/credit-flags/IconVisa.vue | 28 + src/components/ui/Modal.vue | 7 +- src/components/ui/QuestionForm.vue | 247 ++++++++ src/layouts/CategoryLayout.vue | 2 +- src/layouts/CheckoutLayout.vue | 13 +- src/layouts/DefaultLayout.vue | 2 +- src/layouts/HomeLayout.vue | 4 +- src/pages/CategoryPage.vue | 89 ++- src/pages/CheckoutPage.vue | 552 ++++++++++++------ src/pages/HomePage.vue | 25 +- src/router/routes.ts | 11 +- src/stores/forms.ts | 31 + src/stores/language.ts | 7 + 16 files changed, 874 insertions(+), 219 deletions(-) create mode 100644 src/components/icons/IconArrowRightOne.vue create mode 100644 src/components/icons/credit-flags/IconAny.vue create mode 100644 src/components/icons/credit-flags/IconExprex.vue create mode 100644 src/components/icons/credit-flags/IconVisa.vue create mode 100644 src/components/ui/QuestionForm.vue create mode 100644 src/stores/forms.ts create mode 100644 src/stores/language.ts diff --git a/src/components/icons/IconArrowRightOne.vue b/src/components/icons/IconArrowRightOne.vue new file mode 100644 index 0000000..6bb8242 --- /dev/null +++ b/src/components/icons/IconArrowRightOne.vue @@ -0,0 +1,14 @@ + diff --git a/src/components/icons/credit-flags/IconAny.vue b/src/components/icons/credit-flags/IconAny.vue new file mode 100644 index 0000000..d6cf52e --- /dev/null +++ b/src/components/icons/credit-flags/IconAny.vue @@ -0,0 +1,7 @@ + diff --git a/src/components/icons/credit-flags/IconExprex.vue b/src/components/icons/credit-flags/IconExprex.vue new file mode 100644 index 0000000..68a900e --- /dev/null +++ b/src/components/icons/credit-flags/IconExprex.vue @@ -0,0 +1,54 @@ + diff --git a/src/components/icons/credit-flags/IconVisa.vue b/src/components/icons/credit-flags/IconVisa.vue new file mode 100644 index 0000000..fa598f3 --- /dev/null +++ b/src/components/icons/credit-flags/IconVisa.vue @@ -0,0 +1,28 @@ + diff --git a/src/components/ui/Modal.vue b/src/components/ui/Modal.vue index c046c8b..68ef92b 100644 --- a/src/components/ui/Modal.vue +++ b/src/components/ui/Modal.vue @@ -5,7 +5,7 @@ - + @@ -195,6 +195,7 @@ export default defineComponent({ flex-wrap: wrap; justify-content: space-between; position: relative; + gap: 60px; &::after { content: ''; position: absolute; @@ -207,6 +208,10 @@ export default defineComponent({ transform: translateX(-50%); } + & .custom-input-el { + flex: 1 0 100px; + } + @media only screen and (max-width: $med-md) { flex-direction: column; justify-content: center; diff --git a/src/components/ui/QuestionForm.vue b/src/components/ui/QuestionForm.vue new file mode 100644 index 0000000..3bef98f --- /dev/null +++ b/src/components/ui/QuestionForm.vue @@ -0,0 +1,247 @@ + + + + + diff --git a/src/layouts/CategoryLayout.vue b/src/layouts/CategoryLayout.vue index 22ec4e1..019441a 100644 --- a/src/layouts/CategoryLayout.vue +++ b/src/layouts/CategoryLayout.vue @@ -5,7 +5,7 @@ - + diff --git a/src/layouts/CheckoutLayout.vue b/src/layouts/CheckoutLayout.vue index ed34540..2737a12 100644 --- a/src/layouts/CheckoutLayout.vue +++ b/src/layouts/CheckoutLayout.vue @@ -5,10 +5,12 @@ - + + + @@ -21,13 +23,20 @@ import { defineComponent } from 'vue'; import { storeToRefs } from 'pinia'; import FooterComponent from 'src/components/footer/FooterComponent.vue'; import HeaderSecondary from 'src/components/header/HeaderSecondary.vue'; +import DudasSection from 'src/components/sections/DudasSection.vue'; import QuestionSection from 'src/components/sections/QuestionSection.vue'; import MobileNav from 'src/components/ui/MobileNav.vue'; import { useMobileStore } from 'src/stores/mobileNav'; export default defineComponent({ name: 'ProductLayout', - components: { HeaderSecondary, FooterComponent, QuestionSection, MobileNav }, + components: { + HeaderSecondary, + FooterComponent, + QuestionSection, + MobileNav, + DudasSection, + }, setup() { const mobileStore = useMobileStore(); const { isOpenNav } = storeToRefs(mobileStore); diff --git a/src/layouts/DefaultLayout.vue b/src/layouts/DefaultLayout.vue index 2988e99..cdc4575 100644 --- a/src/layouts/DefaultLayout.vue +++ b/src/layouts/DefaultLayout.vue @@ -5,7 +5,7 @@ - + diff --git a/src/layouts/HomeLayout.vue b/src/layouts/HomeLayout.vue index d9a80e8..cf46894 100644 --- a/src/layouts/HomeLayout.vue +++ b/src/layouts/HomeLayout.vue @@ -5,7 +5,7 @@ - + @@ -18,9 +18,9 @@ diff --git a/src/pages/CheckoutPage.vue b/src/pages/CheckoutPage.vue index 5c84fa8..3cec1dc 100644 --- a/src/pages/CheckoutPage.vue +++ b/src/pages/CheckoutPage.vue @@ -1,6 +1,6 @@ - diff --git a/src/components/ExampleComponent.vue b/src/components/ExampleComponent.vue deleted file mode 100644 index 3bfd35e..0000000 --- a/src/components/ExampleComponent.vue +++ /dev/null @@ -1,64 +0,0 @@ - - - diff --git a/src/components/icons/credit-flags/IconExpress.vue b/src/components/icons/credit-flags/IconExpress.vue new file mode 100644 index 0000000..68a900e --- /dev/null +++ b/src/components/icons/credit-flags/IconExpress.vue @@ -0,0 +1,54 @@ + diff --git a/src/components/icons/credit-flags/IconMaster.vue b/src/components/icons/credit-flags/IconMaster.vue new file mode 100644 index 0000000..16b1a07 --- /dev/null +++ b/src/components/icons/credit-flags/IconMaster.vue @@ -0,0 +1,42 @@ + + + diff --git a/src/components/icons/svg/ArrowCircleFilledLeft.svg b/src/components/icons/svg/ArrowCircleFilledLeft.svg new file mode 100644 index 0000000..fa7240e --- /dev/null +++ b/src/components/icons/svg/ArrowCircleFilledLeft.svg @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/src/components/icons/svg/ArrowCircleFilledRight.svg b/src/components/icons/svg/ArrowCircleFilledRight.svg new file mode 100644 index 0000000..31ecbba --- /dev/null +++ b/src/components/icons/svg/ArrowCircleFilledRight.svg @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/src/components/models.ts b/src/components/models.ts deleted file mode 100644 index 6945920..0000000 --- a/src/components/models.ts +++ /dev/null @@ -1,8 +0,0 @@ -export interface Todo { - id: number; - content: string; -} - -export interface Meta { - totalCount: number; -} diff --git a/src/components/quasar-components/carousel/HorizontalCarousel.vue b/src/components/quasar-components/carousel/HorizontalCarousel.vue index 035449c..611ae6a 100644 --- a/src/components/quasar-components/carousel/HorizontalCarousel.vue +++ b/src/components/quasar-components/carousel/HorizontalCarousel.vue @@ -1,29 +1,87 @@ + + diff --git a/src/components/swiper/Swiper.vue b/src/components/swiper/Swiper.vue new file mode 100644 index 0000000..d4ab691 --- /dev/null +++ b/src/components/swiper/Swiper.vue @@ -0,0 +1,196 @@ + + + + + diff --git a/src/components/ui/Card.vue b/src/components/ui/Card.vue index a8b67c5..05c9823 100644 --- a/src/components/ui/Card.vue +++ b/src/components/ui/Card.vue @@ -139,6 +139,9 @@ export default defineComponent({ border-radius: 15px; overflow: hidden; position: relative; + &:focus-visible { + outline: 2px solid $primary-light; + } &:hover { & .tags { @@ -170,6 +173,7 @@ export default defineComponent({ font-family: $font-lora; user-select: none; font-weight: 600; + font-size: $font-12; &.new { color: $white; @@ -180,6 +184,10 @@ export default defineComponent({ background: $primary-light; color: $primary-dark; } + + @media only screen and (max-width: $med-lg) { + font-size: $font-10; + } } } diff --git a/src/components/ui/MobileNav.vue b/src/components/ui/MobileNav.vue index 948b0a0..06e52bf 100644 --- a/src/components/ui/MobileNav.vue +++ b/src/components/ui/MobileNav.vue @@ -1,11 +1,19 @@ @@ -216,7 +264,16 @@ export default defineComponent({ padding: 4px 30px 4px 14px; } &.order-filter { - padding: 4px 30px 4px 14px; + padding: 4px 10px 4px 20px; + text-align: end; + border-radius: 10px 0px 0px 10px; + &.active { + border-radius: 10px 0px 0px 0px; + } + + & .order-filters { + position: relative; + } } &.filters { @@ -230,6 +287,7 @@ export default defineComponent({ & .filter-btn { padding: 8px; border-radius: 0 30px 30px 0; + &.availability, &.price-order { position: absolute; @@ -243,6 +301,7 @@ export default defineComponent({ &.price-order { right: -33px; padding: 9.5px; + top: 0; } } @@ -250,6 +309,7 @@ export default defineComponent({ display: flex; gap: 40px; margin-right: 33px; + align-items: flex-start; } @media only screen and (max-width: $med-md) { diff --git a/src/pages/CheckoutPage.vue b/src/pages/CheckoutPage.vue index 3cec1dc..b264577 100644 --- a/src/pages/CheckoutPage.vue +++ b/src/pages/CheckoutPage.vue @@ -1,75 +1,86 @@