@xelto.npm/xc2-lib 1.0.0 → 1.0.2
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/dist/fonts/Barlow-Black.ttf +0 -0
- package/dist/fonts/Barlow-BlackItalic.ttf +0 -0
- package/dist/fonts/Barlow-Bold.ttf +0 -0
- package/dist/fonts/Barlow-BoldItalic.ttf +0 -0
- package/dist/fonts/Barlow-ExtraBold.ttf +0 -0
- package/dist/fonts/Barlow-ExtraBoldItalic.ttf +0 -0
- package/dist/fonts/Barlow-ExtraLight.ttf +0 -0
- package/dist/fonts/Barlow-ExtraLightItalic.ttf +0 -0
- package/dist/fonts/Barlow-Italic.ttf +0 -0
- package/dist/fonts/Barlow-Light.ttf +0 -0
- package/dist/fonts/Barlow-LightItalic.ttf +0 -0
- package/dist/fonts/Barlow-Medium.ttf +0 -0
- package/dist/fonts/Barlow-MediumItalic.ttf +0 -0
- package/dist/fonts/Barlow-Regular.ttf +0 -0
- package/dist/fonts/Barlow-SemiBold.ttf +0 -0
- package/dist/fonts/Barlow-SemiBoldItalic.ttf +0 -0
- package/dist/fonts/Barlow-Thin.ttf +0 -0
- package/dist/fonts/Barlow-ThinItalic.ttf +0 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/styles.global.css +19 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/index.cjs.js
CHANGED
|
@@ -75152,7 +75152,7 @@ var StyledLeftRightComponentsWrapper = styled$1(Box$1, {
|
|
|
75152
75152
|
justifyContent: 'space-between',
|
|
75153
75153
|
alignItems: 'center',
|
|
75154
75154
|
padding: '10px 0 0',
|
|
75155
|
-
zIndex:
|
|
75155
|
+
zIndex: 11,
|
|
75156
75156
|
color: '#293072',
|
|
75157
75157
|
fontSize: 13,
|
|
75158
75158
|
fontWeight: 500,
|
package/dist/index.esm.js
CHANGED
|
@@ -75132,7 +75132,7 @@ var StyledLeftRightComponentsWrapper = styled$1(Box$1, {
|
|
|
75132
75132
|
justifyContent: 'space-between',
|
|
75133
75133
|
alignItems: 'center',
|
|
75134
75134
|
padding: '10px 0 0',
|
|
75135
|
-
zIndex:
|
|
75135
|
+
zIndex: 11,
|
|
75136
75136
|
color: '#293072',
|
|
75137
75137
|
fontSize: 13,
|
|
75138
75138
|
fontWeight: 500,
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
|
|
2
|
+
|
|
3
|
+
@font-face {
|
|
4
|
+
font-family: 'Barlow';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
body,html, #root{
|
|
8
|
+
height: 100%;
|
|
9
|
+
}
|
|
10
|
+
body {
|
|
11
|
+
margin: 0;
|
|
12
|
+
font-family: 'Barlow', sans-serif;
|
|
13
|
+
-webkit-font-smoothing: antialiased;
|
|
14
|
+
-moz-osx-font-smoothing: grayscale;
|
|
15
|
+
-webkit-tap-highlight-color: transparent;
|
|
16
|
+
}
|
|
17
|
+
*, *::before, *::after {
|
|
18
|
+
box-sizing: border-box;
|
|
19
|
+
}
|