dirk-cfx-react 1.0.2 → 1.0.4
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/components/index.cjs +9 -10
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +4 -10
- package/dist/components/index.js.map +1 -1
- package/dist/fonts/Akrobat-Black.woff +0 -0
- package/dist/fonts/Akrobat-Bold.woff +0 -0
- package/dist/fonts/Akrobat-ExtraLight.woff +0 -0
- package/dist/fonts/Akrobat-Light.woff +0 -0
- package/dist/fonts/Akrobat-Regular.woff +0 -0
- package/dist/fonts/Akrobat-SemiBold.woff +0 -0
- package/dist/fonts/CREDC___.otf +0 -0
- package/dist/fonts/CREDC___.ttf +0 -0
- package/dist/fonts/akrobat-extrabold-webfont.woff +0 -0
- package/dist/index.cjs +9 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -10
- package/dist/index.js.map +1 -1
- package/dist/styles/niceFont.css +62 -0
- package/dist/styles/scrollBar.css +28 -0
- package/package.json +20 -16
- package/src/fonts/Akrobat-Black.woff +0 -0
- package/src/fonts/Akrobat-Bold.woff +0 -0
- package/src/fonts/Akrobat-ExtraLight.woff +0 -0
- package/src/fonts/Akrobat-Light.woff +0 -0
- package/src/fonts/Akrobat-Regular.woff +0 -0
- package/src/fonts/Akrobat-SemiBold.woff +0 -0
- package/src/fonts/CREDC___.otf +0 -0
- package/src/fonts/CREDC___.ttf +0 -0
- package/src/fonts/akrobat-extrabold-webfont.woff +0 -0
- package/src/styles/niceFont.css +62 -0
- package/src/styles/scrollBar.css +28 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'Akrobat Regular';
|
|
3
|
+
font-style: normal;
|
|
4
|
+
font-weight: normal;
|
|
5
|
+
src: local('Akrobat Regular'), url('./fonts/Akrobat-Regular.woff') format('woff');
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: 'Akrobat Light';
|
|
11
|
+
font-style: normal;
|
|
12
|
+
font-weight: normal;
|
|
13
|
+
src: local('Akrobat Light'), url('./fonts/Akrobat-Light.woff') format('woff');
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
@font-face {
|
|
18
|
+
font-family: 'Akrobat ExtraLight';
|
|
19
|
+
font-style: normal;
|
|
20
|
+
font-weight: normal;
|
|
21
|
+
src: local('Akrobat ExtraLight'), url('./fonts/Akrobat-ExtraLight.woff') format('woff');
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
@font-face {
|
|
26
|
+
font-family: 'Akrobat SemiBold';
|
|
27
|
+
font-style: normal;
|
|
28
|
+
font-weight: normal;
|
|
29
|
+
src: local('Akrobat SemiBold'), url('./fonts/Akrobat-SemiBold.woff') format('woff');
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
@font-face {
|
|
34
|
+
font-family: 'Akrobat Bold';
|
|
35
|
+
font-style: normal;
|
|
36
|
+
font-weight: normal;
|
|
37
|
+
src: local('Akrobat Bold'), url('./fonts/Akrobat-Bold.woff') format('woff');
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
@font-face {
|
|
42
|
+
font-family: 'Akrobat ExtraBold Regular';
|
|
43
|
+
font-style: normal;
|
|
44
|
+
font-weight: normal;
|
|
45
|
+
src: local('Akrobat ExtraBold Regular'), url('./fonts/akrobat-extrabold-webfont.woff') format('woff');
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
@font-face {
|
|
50
|
+
font-family: 'Akrobat Black';
|
|
51
|
+
font-style: normal;
|
|
52
|
+
font-weight: normal;
|
|
53
|
+
src: local('Akrobat Black'), url('./fonts/Akrobat-Black.woff') format('woff');
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@font-face {
|
|
57
|
+
font-family: 'CreditCard';
|
|
58
|
+
font-style: normal;
|
|
59
|
+
font-weight: normal;
|
|
60
|
+
src: local('Credit Card'), url('./fonts/CREDC___.otf') format('otf');
|
|
61
|
+
}
|
|
62
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
|
|
2
|
+
::-webkit-scrollbar {
|
|
3
|
+
width: 2px;
|
|
4
|
+
height: 6px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
/* Track */
|
|
9
|
+
::-webkit-scrollbar-track {
|
|
10
|
+
border-radius: var(--mantine-radius-md);
|
|
11
|
+
background: var(--mantine-color-dark-9);
|
|
12
|
+
margin-left:40px;
|
|
13
|
+
margin-right:40px;
|
|
14
|
+
margin-top:40px;
|
|
15
|
+
margin-bottom:40px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/* Handle */
|
|
19
|
+
::-webkit-scrollbar-thumb {
|
|
20
|
+
border-radius: var(--mantine-radius-md);
|
|
21
|
+
background: var(--mantine-primary-color-9);
|
|
22
|
+
cursor:pointer;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/* Handle on hover */
|
|
26
|
+
::-webkit-scrollbar-thumb:hover {
|
|
27
|
+
background: var(--mantine-primary-color-7);
|
|
28
|
+
}
|