@uob-web-and-digital/component-library 0.0.19 → 0.0.21

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
@@ -89,3 +89,13 @@ After installation you will need to add the following to your layout file;
89
89
  ```
90
90
  import '@uob-web-and-digital/component-library/dist/main.css';
91
91
  ```
92
+
93
+ ## Base64 fonts
94
+
95
+ Fonts are base64 encoded so they are not hosted on a third party.
96
+
97
+ To encode fonts to base64 you can run;
98
+
99
+ ```
100
+ base64 -i Font.woff2 -o Font64txt
101
+ ```