@myissue/vue-website-page-builder 3.3.25 → 3.3.27
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
CHANGED
|
@@ -514,12 +514,12 @@ export class PageBuilderService {
|
|
|
514
514
|
// Hardcoded mapping: selected => base
|
|
515
515
|
const fontSizeBaseMap: Record<string, string> = {
|
|
516
516
|
'pbx-text-9xl': 'pbx-text-6xl',
|
|
517
|
-
'pbx-text-8xl': 'pbx-text-
|
|
518
|
-
'pbx-text-7xl': 'pbx-text-
|
|
517
|
+
'pbx-text-8xl': 'pbx-text-5xl',
|
|
518
|
+
'pbx-text-7xl': 'pbx-text-4xl',
|
|
519
519
|
'pbx-text-6xl': 'pbx-text-3xl',
|
|
520
520
|
'pbx-text-5xl': 'pbx-text-3xl',
|
|
521
521
|
'pbx-text-4xl': 'pbx-text-2xl',
|
|
522
|
-
'pbx-text-3xl': 'pbx-text-
|
|
522
|
+
'pbx-text-3xl': 'pbx-text-1xl',
|
|
523
523
|
'pbx-text-2xl': 'pbx-text-lg',
|
|
524
524
|
'pbx-text-xl': 'pbx-text-base',
|
|
525
525
|
'pbx-text-lg': 'pbx-text-sm',
|
|
@@ -585,10 +585,10 @@ export class PageBuilderService {
|
|
|
585
585
|
|
|
586
586
|
// Apply responsive font size classes based on heading type
|
|
587
587
|
if (heading.tagName === 'H2') {
|
|
588
|
-
element.classList.add('pbx-text-
|
|
588
|
+
element.classList.add('pbx-text-2xl', 'lg:pbx-text-4xl')
|
|
589
589
|
}
|
|
590
590
|
if (heading.tagName === 'H3') {
|
|
591
|
-
element.classList.add('pbx-text-
|
|
591
|
+
element.classList.add('pbx-text-1xl', 'lg:pbx-text-3xl')
|
|
592
592
|
}
|
|
593
593
|
}
|
|
594
594
|
}
|
package/src/css/app.css
CHANGED
|
@@ -358,14 +358,6 @@
|
|
|
358
358
|
}
|
|
359
359
|
}
|
|
360
360
|
|
|
361
|
-
/* p {
|
|
362
|
-
@apply pbx-font-normal lg:pbx-text-base pbx-text-base;
|
|
363
|
-
} */
|
|
364
|
-
|
|
365
|
-
a {
|
|
366
|
-
@apply pbx-text-myPrimaryLinkColor;
|
|
367
|
-
}
|
|
368
|
-
|
|
369
361
|
/* CSS for content inside page builder # start */
|
|
370
362
|
#page-builder-editor .tiptap {
|
|
371
363
|
outline: none !important;
|