@designcrowd/fe-shared-lib 1.5.9-kp-2 → 1.5.9-kp-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/public/css/tailwind-brandCrowd.css +4 -0
- package/public/css/tailwind-crazyDomains.css +4 -0
- package/public/css/tailwind-designCom.css +4 -0
- package/public/css/tailwind-designCrowd.css +4 -0
- package/src/experiences/components/PublishBrandPageModal/views/PublishWhenNoDomainsView.vue +8 -9
package/package.json
CHANGED
|
@@ -2140,6 +2140,10 @@ video {
|
|
|
2140
2140
|
--tw-text-opacity: 1;
|
|
2141
2141
|
color: rgb(17 21 23 / var(--tw-text-opacity));
|
|
2142
2142
|
}
|
|
2143
|
+
.theme-brandCrowd .hover\:tw-text-primary-600:hover {
|
|
2144
|
+
--tw-text-opacity: 1;
|
|
2145
|
+
color: rgb(194 22 50 / var(--tw-text-opacity));
|
|
2146
|
+
}
|
|
2143
2147
|
.theme-brandCrowd .hover\:tw-text-secondary-500:hover {
|
|
2144
2148
|
--tw-text-opacity: 1;
|
|
2145
2149
|
color: rgb(89 89 89 / var(--tw-text-opacity));
|
|
@@ -2140,6 +2140,10 @@ video {
|
|
|
2140
2140
|
--tw-text-opacity: 1;
|
|
2141
2141
|
color: rgb(79 89 92 / var(--tw-text-opacity));
|
|
2142
2142
|
}
|
|
2143
|
+
.theme-crazyDomains .hover\:tw-text-primary-600:hover {
|
|
2144
|
+
--tw-text-opacity: 1;
|
|
2145
|
+
color: rgb(89 138 38 / var(--tw-text-opacity));
|
|
2146
|
+
}
|
|
2143
2147
|
.theme-crazyDomains .hover\:tw-text-secondary-500:hover {
|
|
2144
2148
|
--tw-text-opacity: 1;
|
|
2145
2149
|
color: rgb(72 72 72 / var(--tw-text-opacity));
|
|
@@ -2140,6 +2140,10 @@ video {
|
|
|
2140
2140
|
--tw-text-opacity: 1;
|
|
2141
2141
|
color: rgb(23 23 23 / var(--tw-text-opacity));
|
|
2142
2142
|
}
|
|
2143
|
+
.theme-designCom .hover\:tw-text-primary-600:hover {
|
|
2144
|
+
--tw-text-opacity: 1;
|
|
2145
|
+
color: rgb(50 71 197 / var(--tw-text-opacity));
|
|
2146
|
+
}
|
|
2143
2147
|
.theme-designCom .hover\:tw-text-secondary-500:hover {
|
|
2144
2148
|
--tw-text-opacity: 1;
|
|
2145
2149
|
color: rgb(61 61 61 / var(--tw-text-opacity));
|
|
@@ -2140,6 +2140,10 @@ video {
|
|
|
2140
2140
|
--tw-text-opacity: 1;
|
|
2141
2141
|
color: rgb(39 52 56 / var(--tw-text-opacity));
|
|
2142
2142
|
}
|
|
2143
|
+
.theme-designCrowd .hover\:tw-text-primary-600:hover {
|
|
2144
|
+
--tw-text-opacity: 1;
|
|
2145
|
+
color: rgb(14 121 188 / var(--tw-text-opacity));
|
|
2146
|
+
}
|
|
2143
2147
|
.theme-designCrowd .hover\:tw-text-secondary-500:hover {
|
|
2144
2148
|
--tw-text-opacity: 1;
|
|
2145
2149
|
color: rgb(93 109 129 / var(--tw-text-opacity));
|
|
@@ -46,15 +46,12 @@
|
|
|
46
46
|
<div class="tw-mt-4">
|
|
47
47
|
<slot name="recommended" />
|
|
48
48
|
</div>
|
|
49
|
-
<div class="tw-
|
|
50
|
-
<p>
|
|
51
|
-
{{
|
|
52
|
-
<a
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
@click.prevent="onUseExistingDomain"
|
|
56
|
-
>{{ publishBrandPageModalTr.useExistingDomainLabel }}</a
|
|
57
|
-
>
|
|
49
|
+
<div class="tw-m-4 tw-text-center">
|
|
50
|
+
<p :class="{ 'tw-text-grayscale-600': isDesignCom }">
|
|
51
|
+
{{ alreadyHaveADomainLabel }}
|
|
52
|
+
<a href="#" class="tw-text-primary-500 hover:tw-text-primary-600" @click.prevent="onUseExistingDomain">{{
|
|
53
|
+
useExistingDomainLabel
|
|
54
|
+
}}</a>
|
|
58
55
|
</p>
|
|
59
56
|
</div>
|
|
60
57
|
</div>
|
|
@@ -127,6 +124,8 @@ export default {
|
|
|
127
124
|
slugInputPlaceholderYourNameLabel: publishBrandPageModalTr('slugInputPlaceholderYourNameLabel'),
|
|
128
125
|
slugInputPlaceholderYourBusinessNameLabel: publishBrandPageModalTr('slugInputPlaceholderYourBusinessNameLabel'),
|
|
129
126
|
publishLabel: publishBrandPageModalTr('publishLabel'),
|
|
127
|
+
alreadyHaveADomainLabel: publishBrandPageModalTr('alreadyHaveADomainLabel'),
|
|
128
|
+
useExistingDomainLabel: publishBrandPageModalTr('useExistingDomainLabel'),
|
|
130
129
|
};
|
|
131
130
|
},
|
|
132
131
|
data() {
|