Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@
display: block;
margin: 0 0 var(--spacing-s);
}

.catalog-marquee .mnemonic-list .product-list .product-item strong {
font-size: var(--type-heading-xs-size);
}
}

@media screen and (min-width: 1600px) {
Expand Down
8 changes: 4 additions & 4 deletions creativecloud/plans/blocks/cc-forms/cc-forms.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const odinConfig = {
const formConfig = {
perpeptual: {
type: 'perpeptual',
jsPath: '/creativecloud/features/cc-forms/forms/perpeptual.js',
jsPath: '/creativecloud/plans/features/cc-forms/forms/perpeptual.js',
blockDataset: {
clientname: 'trials',
endpoint: '/api2/marketing_common_service',
Expand All @@ -33,7 +33,7 @@ const formConfig = {
},
connect: {
type: 'connect',
jsPath: '/creativecloud/features/cc-forms/forms/connect.js',
jsPath: '/creativecloud/plans/features/cc-forms/forms/connect.js',
blockDataset: {
clientname: 'connecttrial',
endpoint: '/api2/connect_trial_creation_service',
Expand All @@ -47,7 +47,7 @@ const formConfig = {
},
subscribe: {
type: 'subscribe',
jsPath: '/creativecloud/features/cc-forms/forms/subscribe.js',
jsPath: '/creativecloud/plans/features/cc-forms/forms/subscribe.js',
blockDataset: {
endpoint: '/api2/subscribe_v1',
'form-submit': 'trials',
Expand All @@ -60,7 +60,7 @@ const formConfig = {
},
unsubscribe: {
type: 'unsubscribe',
jsPath: '/creativecloud/features/cc-forms/forms/unsubscribe.js',
jsPath: '/creativecloud/plans/features/cc-forms/forms/unsubscribe.js',
blockDataset: {
clientname: 'trials',
endpoint: '/api2/unsubscribe_v2',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ async function addLayerAnimation(asset) {
}

async function loadJSandCSS(stepName) {
const stepJS = `${window.location.origin}/creativecloud/features/interactive-components/${stepName}/${stepName}.js`;
const stepCSS = `${window.location.origin}/creativecloud/features/interactive-components/${stepName}/${stepName}.css`;
const stepJS = `${window.location.origin}/creativecloud/plans/features/interactive-components/${stepName}/${stepName}.js`;
const stepCSS = `${window.location.origin}/creativecloud/plans/features/interactive-components/${stepName}/${stepName}.css`;
loadStyle(stepCSS);
const { default: initFunc } = await import(stepJS);
return initFunc;
Expand Down
Loading