@capillarytech/creatives-library 2.0.60 → 2.0.62
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/app.js +1 -1
- package/components/FormBuilder/_formBuilder.scss +1 -2
- package/components/PreviewSideBar/_previewsidebar.scss +1 -1
- package/components/TemplatePreview/_templatePreview.scss +1 -1
- package/containers/Sms/Create/_smsCreate.scss +1 -1
- package/global-styles.js +1 -0
- package/index.html +2 -0
- package/package.json +1 -1
package/app.js
CHANGED
|
@@ -67,7 +67,7 @@ if (module.hot) {
|
|
|
67
67
|
render(translationMessages);
|
|
68
68
|
});
|
|
69
69
|
}
|
|
70
|
-
const openSansObserver = new FontFaceObserver('
|
|
70
|
+
const openSansObserver = new FontFaceObserver('Roboto', {});
|
|
71
71
|
// When Open Sans is loaded, add a font-family using Open Sans to the body
|
|
72
72
|
openSansObserver.load().then(() => {
|
|
73
73
|
document.body.classList.add('fontLoaded');
|
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
.form-tab-header{
|
|
4
4
|
display: flex;
|
|
5
5
|
align-items: center;
|
|
6
|
-
font-family: open-sans, sans-serif !important;
|
|
7
6
|
font-style: normal;
|
|
8
7
|
font-weight: 600;
|
|
9
8
|
}
|
|
@@ -59,7 +58,7 @@
|
|
|
59
58
|
display: inline-block;
|
|
60
59
|
font-size: 16px;
|
|
61
60
|
margin: 4px;
|
|
62
|
-
font-family: Open-Sans;
|
|
61
|
+
// font-family: Open-Sans;
|
|
63
62
|
text-align: center;
|
|
64
63
|
width: 24px;
|
|
65
64
|
height: 24px;
|
package/global-styles.js
CHANGED
package/index.html
CHANGED
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
<meta name="mobile-web-app-capable" content="yes">
|
|
10
10
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
11
11
|
<script src="https://use.typekit.net/ifw1ntv.js"></script>
|
|
12
|
+
<!-- Roboto Font -->
|
|
13
|
+
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500" rel="stylesheet">
|
|
12
14
|
<!-- Google Tag Manager -->
|
|
13
15
|
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
|
|
14
16
|
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
|