@riosst100/pwa-marketplace 2.0.2 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/RFQ/modalRfq.js +1 -1
- package/src/components/SellerDetail/sellerDetail.js +3 -3
- package/src/overwrites/venia-ui/lib/components/Header/accountTrigger.js +1 -1
- package/src/overwrites/venia-ui/lib/components/Header/header.js +1 -1
- package/src/overwrites/venia-ui/lib/components/MegaMenu/submenuColumn.module.css +1 -1
- package/src/overwrites/venia-ui/lib/components/ProductFullDetail/productFullDetail.js +2 -2
- package/src/overwrites/venia-ui/lib/components/SignIn/signIn.js +1 -1
- package/src/static-files/favicon.ico +0 -0
- package/src/theme/vars.js +1 -1
package/package.json
CHANGED
|
@@ -107,7 +107,7 @@ const SellerDetail = props => {
|
|
|
107
107
|
<div className='flex flex-wrap items-start gap-4 relative'>
|
|
108
108
|
<button class="flex items-center justify-center gap-[5px] xs_p-[11px] lg_px-[20px] lg_py-[8px] relative bg-white rounded-[30px] border border-solid border-[#6243fa]">
|
|
109
109
|
<div class="flex items-center justify-center gap-[10px] relative">
|
|
110
|
-
<Sms color="#
|
|
110
|
+
<Sms color="#ff3b98" size={14} variant="Outline" className='stroke-[#ff3b98]' />
|
|
111
111
|
<div class="relative xs_hidden lg_flex w-fit font-medium text-[#6243fa] text-base tracking-[0] leading-[20px] whitespace-nowrap">
|
|
112
112
|
Message
|
|
113
113
|
</div>
|
|
@@ -141,10 +141,10 @@ const SellerDetail = props => {
|
|
|
141
141
|
</span>
|
|
142
142
|
</Button>
|
|
143
143
|
<button class="flex items-center justify-center gap-[5px] p-[11px] relative bg-white rounded-[30px] overflow-hidden border border-solid border-[#6243fa]">
|
|
144
|
-
<Heart color='#
|
|
144
|
+
<Heart color='#ff3b98' size={14} variant="Outline" className='stroke-[#ff3b98]' />
|
|
145
145
|
</button>
|
|
146
146
|
<button class="flex items-center justify-center gap-[5px] p-[11px] relative bg-white rounded-[30px] overflow-hidden border border-solid border-[#6243fa]">
|
|
147
|
-
<Share color='#
|
|
147
|
+
<Share color='#ff3b98' size={14} variant="Outline" className='stroke-[#ff3b98]' />
|
|
148
148
|
</button>
|
|
149
149
|
</div>
|
|
150
150
|
</div>
|
|
@@ -67,7 +67,7 @@ const AccountTrigger = props => {
|
|
|
67
67
|
shouldIndicateLoading={true}
|
|
68
68
|
/> */}
|
|
69
69
|
<User size="20" color={darkBlue} className={cn('stroke-0')} variant="Outline" />
|
|
70
|
-
<span className='text-base font-
|
|
70
|
+
<span className='text-base font-medium'>
|
|
71
71
|
{formatMessage({
|
|
72
72
|
id: 'accountTrigger.buttonFallback',
|
|
73
73
|
defaultMessage: 'Sign In'
|
|
@@ -134,7 +134,7 @@ const Header = props => {
|
|
|
134
134
|
<MegaMenu
|
|
135
135
|
rootClassName={cn('nav-menu w-full max-w-[1210px] px-[15px] mx-[auto] flex-row gap-x-[40px]')}
|
|
136
136
|
megaMenuItemClassname={cn('px-0 py-[10px] leading-[20px]')}
|
|
137
|
-
titleClassName={cn('font-
|
|
137
|
+
titleClassName={cn('font-normal leading-[20px]')}
|
|
138
138
|
/>
|
|
139
139
|
</header>
|
|
140
140
|
<OnlineIndicator
|
|
@@ -630,7 +630,7 @@ const ProductFullDetail = props => {
|
|
|
630
630
|
<div className='flex flex-wrap items-start gap-4 relative'>
|
|
631
631
|
<Link to='/' class="flex items-center justify-center gap-[5px] py-1 px-5 relative bg-white rounded-[30px] border border-solid border-[#6243fa]">
|
|
632
632
|
<div class="flex items-center justify-center gap-[10px] relative">
|
|
633
|
-
<Sms color="#
|
|
633
|
+
<Sms color="#ff3b98" size={14} variant="Outline" className='stroke-[#ff3b98]' />
|
|
634
634
|
<div class="relative xs_hidden lg_flex w-fit font-medium text-[#6243fa] text-[14px] tracking-[0] leading-[20px] whitespace-nowrap">
|
|
635
635
|
Message
|
|
636
636
|
</div>
|
|
@@ -646,7 +646,7 @@ const ProductFullDetail = props => {
|
|
|
646
646
|
</Link>
|
|
647
647
|
<Link to={"/seller/"+sellerDetails.url_key} class="flex items-center justify-center gap-[5px] py-1 px-5 relative bg-white rounded-[30px] border border-solid border-[#6243fa]">
|
|
648
648
|
<div class="flex items-center justify-center gap-[10px] relative">
|
|
649
|
-
<Shop color="#
|
|
649
|
+
<Shop color="#ff3b98" size={14} variant="Outline" className='stroke-[#ff3b98]' />
|
|
650
650
|
<div class="relative xs_hidden lg_flex w-fit font-medium text-[#6243fa] text-[14px] tracking-[0] leading-[20px] whitespace-nowrap">
|
|
651
651
|
Visit Store
|
|
652
652
|
</div>
|
|
@@ -58,7 +58,7 @@ const SignIn = props => {
|
|
|
58
58
|
|
|
59
59
|
return (
|
|
60
60
|
<div data-cy="SignIn-root" className={cn(classes.root, '!p-[30px]')}>
|
|
61
|
-
<span data-cy="SignIn-title" className={cn(classes.title, 'text-xl font-
|
|
61
|
+
<span data-cy="SignIn-title" className={cn(classes.title, 'text-xl font-medium')}>
|
|
62
62
|
<FormattedMessage
|
|
63
63
|
id={'signIn.signInText'}
|
|
64
64
|
defaultMessage={'Sign In'}
|
|
Binary file
|
package/src/theme/vars.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export const textPrimary = '#1B1B1B';
|
|
2
2
|
export const lightGray = '#E6E9EA';
|
|
3
3
|
export const darkBlue = '#280135';
|
|
4
|
-
export const blue = '#
|
|
4
|
+
export const blue = '#ff3b98';
|
|
5
5
|
export const orange = '#F7C317';
|
|
6
6
|
export const gray100 = '#B9AEC5';
|
|
7
7
|
export const gray600 = '#1BA387';
|