@designcrowd/fe-shared-lib 1.5.9-kp-2 → 1.5.9-kp-3
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 +4 -2
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));
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
</div>
|
|
49
49
|
<div class="tw-mt-4 tw-text-center">
|
|
50
50
|
<p>
|
|
51
|
-
{{
|
|
51
|
+
{{ alreadyHaveADomainLabel }}
|
|
52
52
|
<a
|
|
53
53
|
href="#"
|
|
54
54
|
class="tw-text-primary-500 hover:tw-text-primary-600 tw-underline"
|
|
55
55
|
@click.prevent="onUseExistingDomain"
|
|
56
|
-
>{{
|
|
56
|
+
>{{ useExistingDomainLabel }}</a
|
|
57
57
|
>
|
|
58
58
|
</p>
|
|
59
59
|
</div>
|
|
@@ -127,6 +127,8 @@ export default {
|
|
|
127
127
|
slugInputPlaceholderYourNameLabel: publishBrandPageModalTr('slugInputPlaceholderYourNameLabel'),
|
|
128
128
|
slugInputPlaceholderYourBusinessNameLabel: publishBrandPageModalTr('slugInputPlaceholderYourBusinessNameLabel'),
|
|
129
129
|
publishLabel: publishBrandPageModalTr('publishLabel'),
|
|
130
|
+
alreadyHaveADomainLabel: publishBrandPageModalTr('alreadyHaveADomainLabel'),
|
|
131
|
+
useExistingDomainLabel: publishBrandPageModalTr('useExistingDomainLabel'),
|
|
130
132
|
};
|
|
131
133
|
},
|
|
132
134
|
data() {
|