@myissue/vue-website-page-builder 3.0.21 → 3.0.22
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/README.md
CHANGED
|
@@ -27,6 +27,7 @@ import '@myissue/vue-website-page-builder/style.css'
|
|
|
27
27
|
This import automatically includes:
|
|
28
28
|
|
|
29
29
|
- ✅ Page builder styles
|
|
30
|
+
- ✅ Google Fonts (Jost, Cormorant - no additional setup needed)
|
|
30
31
|
- ✅ Google Material Icons (no additional setup needed)
|
|
31
32
|
- ✅ Responsive design utilities
|
|
32
33
|
|
|
@@ -121,7 +122,7 @@ import '@myissue/vue-website-page-builder/style.css'
|
|
|
121
122
|
</template>
|
|
122
123
|
```
|
|
123
124
|
|
|
124
|
-
> **📝 Note**: Google Material Icons are automatically loaded when you import the CSS file. No additional setup required for icons!
|
|
125
|
+
> **📝 Note**: Google Fonts (Jost, Cormorant) and Material Icons are automatically loaded when you import the CSS file. No additional setup required for fonts or icons!
|
|
125
126
|
|
|
126
127
|
### Customization
|
|
127
128
|
|
|
@@ -176,9 +177,9 @@ The logo will be displayed with a subtle border separator and proper spacing in
|
|
|
176
177
|
|
|
177
178
|
## Troubleshooting
|
|
178
179
|
|
|
179
|
-
### Icons Not Displaying
|
|
180
|
+
### Fonts or Icons Not Displaying
|
|
180
181
|
|
|
181
|
-
If Material Icons are not displaying correctly, verify that:
|
|
182
|
+
If fonts (Jost, Cormorant) or Material Icons are not displaying correctly, verify that:
|
|
182
183
|
|
|
183
184
|
1. **CSS Import**: Ensure you're importing the CSS file:
|
|
184
185
|
|
|
@@ -186,9 +187,11 @@ If Material Icons are not displaying correctly, verify that:
|
|
|
186
187
|
import '@myissue/vue-website-page-builder/style.css'
|
|
187
188
|
```
|
|
188
189
|
|
|
189
|
-
2. **Network Access**: The package loads icons from Google Fonts CDN. Ensure your application can access:
|
|
190
|
+
2. **Network Access**: The package loads fonts and icons from Google Fonts CDN. Ensure your application can access:
|
|
190
191
|
|
|
191
192
|
```
|
|
193
|
+
https://fonts.googleapis.com/css2?family=Jost:*
|
|
194
|
+
https://fonts.googleapis.com/css2?family=Cormorant:*
|
|
192
195
|
https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined
|
|
193
196
|
```
|
|
194
197
|
|