shared-ritm 1.3.38 → 1.3.39

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.
Files changed (62) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +7 -7
  3. package/dist/shared-ritm.umd.js +150 -150
  4. package/package.json +70 -64
  5. package/src/App.vue +2461 -2461
  6. package/src/api/services/ControlsService.ts +96 -96
  7. package/src/api/services/EquipmentService.ts +29 -29
  8. package/src/api/services/GanttService.ts +23 -23
  9. package/src/api/services/MetricsService.ts +123 -123
  10. package/src/api/services/RepairsService.ts +111 -111
  11. package/src/api/services/TasksService.ts +157 -157
  12. package/src/api/services/UserService.ts +123 -123
  13. package/src/api/services/VideoService.ts +118 -118
  14. package/src/api/types/Api_Metrics.ts +5 -5
  15. package/src/api/types/Api_Repairs.ts +186 -186
  16. package/src/api/types/Api_Tasks.ts +376 -376
  17. package/src/api/types/Api_Video.ts +244 -244
  18. package/src/common/app-button/Button.stories.ts +369 -0
  19. package/src/common/app-checkbox/Checkbox.stories.ts +60 -0
  20. package/src/common/app-date-picker/DatePicker.stories.ts +66 -0
  21. package/src/common/app-datepicker/Datepicker.stories.ts +145 -0
  22. package/src/common/app-dialogs/AppConfirmDialog.vue +109 -109
  23. package/src/common/app-dialogs/Confirm.stories.ts +93 -0
  24. package/src/common/app-dropdown/Dropdown.stories.ts +94 -0
  25. package/src/common/app-file/File.stories.ts +104 -0
  26. package/src/common/app-icon/AppIcon.vue +108 -108
  27. package/src/common/app-icon/Icon.stories.ts +91 -0
  28. package/src/common/app-input/Input.stories.ts +160 -0
  29. package/src/common/app-input-new/InputNew.stories.ts +240 -0
  30. package/src/common/app-input-search/InputSearch.stories.ts +149 -0
  31. package/src/common/app-layout/components/AppLayoutHeader.vue +289 -273
  32. package/src/common/app-loader/Loader.stories.ts +114 -0
  33. package/src/common/app-select/AppSelect.vue +159 -159
  34. package/src/common/app-select/Select.stories.ts +155 -0
  35. package/src/common/app-sidebar/AppSidebar.vue +174 -174
  36. package/src/common/app-table/AppTable.vue +313 -313
  37. package/src/common/app-table/components/ModalSelect.stories.ts +323 -0
  38. package/src/common/app-table/components/ModalSelect.vue +302 -302
  39. package/src/common/app-table/components/TableModal.vue +367 -367
  40. package/src/common/app-table/controllers/useColumnSelector.ts +45 -45
  41. package/src/common/app-table/controllers/useTableModel.ts +97 -102
  42. package/src/common/app-toggle/Toggle.stories.ts +69 -0
  43. package/src/common/app-wrapper/AppWrapper.vue +31 -28
  44. package/src/configs/storybook.ts +14 -0
  45. package/src/index.ts +131 -131
  46. package/src/shared/styles/general.css +140 -124
  47. package/src/styles/variables.sass +12 -12
  48. package/src/utils/helpers.ts +59 -59
  49. package/dist/types/api/services/PhotoService.d.ts +0 -40
  50. package/dist/types/stories/Button.stories.d.ts +0 -13
  51. package/dist/types/stories/Checkbox.stories.d.ts +0 -7
  52. package/dist/types/stories/Confirm.stories.d.ts +0 -8
  53. package/dist/types/stories/DatePicker.stories.d.ts +0 -8
  54. package/dist/types/stories/Dropdown.stories.d.ts +0 -8
  55. package/dist/types/stories/File.stories.d.ts +0 -8
  56. package/dist/types/stories/Icon.stories.d.ts +0 -7
  57. package/dist/types/stories/Input.stories.d.ts +0 -11
  58. package/dist/types/stories/InputNew.stories.d.ts +0 -12
  59. package/dist/types/stories/InputSearch.stories.d.ts +0 -10
  60. package/dist/types/stories/Loader.stories.d.ts +0 -8
  61. package/dist/types/stories/Select.stories.d.ts +0 -7
  62. package/dist/types/stories/Toggle.stories.d.ts +0 -8
package/src/index.ts CHANGED
@@ -1,131 +1,131 @@
1
- import './shared/styles/general.css'
2
- import AppButton from './common/app-button/AppButton.vue'
3
- import AppCheckbox from './common/app-checkbox/AppCheckbox.vue'
4
- import AppDatePicker from './common/app-date-picker/AppDatePicker.vue'
5
- import AppDatepicker from './common/app-datepicker/AppDatepicker.vue'
6
- import AppInput from './common/app-input/AppInput.vue'
7
- import AppInputNew from './common/app-input-new/AppInputNew.vue'
8
- import AppInputSearch from './common/app-input-search/AppInputSearch.vue'
9
- import AppLayout from './common/app-layout/AppLayout.vue'
10
- import AppLayoutHeader from './common/app-layout/components/AppLayoutHeader.vue'
11
- import AppLayoutPage from './common/app-layout/components/AppLayoutPage.vue'
12
- import AppLoader from './common/app-loader/index.vue'
13
- import AppSelect from './common/app-select/AppSelect.vue'
14
- import AppSheet from './common/app-sheet/AppSheet.vue'
15
- import AppSheetNew from './common/app-sheet-new/AppSheetNew.vue'
16
- import AppSidebar from './common/app-sidebar/AppSidebar.vue'
17
- import AppToggle from './common/app-toggle/AppToggle.vue'
18
- import AppWrapper from './common/app-wrapper/AppWrapper.vue'
19
- import AppConfirmDialog from './common/app-dialogs/AppConfirmDialog.vue'
20
- import AppDropdown from './common/app-dropdown/AppDropdown.vue'
21
- import AppTablePagination from './common/app-table/components/TablePagination.vue'
22
- import AppTableSearch from './common/app-table/components/TableSearch.vue'
23
- import AppTableModal from './common/app-table/components/TableModal.vue'
24
- import AppTable from './common/app-table/AppTable.vue'
25
- import AppTableLayout from './common/app-table/AppTableLayout.vue'
26
- import AppModalSelect from './common/app-table/components/ModalSelect.vue'
27
- import AppModal from './common/app-modal/index.vue'
28
- import AppFile from './common/app-file/AppFile.vue'
29
-
30
- import ApiService from './api/settings/ApiService'
31
- import useGanttService from './api/services/GanttService'
32
- import useMetricsService from './api/services/MetricsService'
33
- import useProjectsService from './api/services/ProjectsService'
34
- import useRepairsService from './api/services/RepairsService'
35
- import useTasksService from './api/services/TasksService'
36
- import useAuthService from './api/services/AuthService'
37
- import useFileService from './api/services/FileService'
38
- import useVideoService from './api/services/VideoService'
39
- import useUserService from './api/services/UserService'
40
- import useInstrumentsService from './api/services/InstrumentsService'
41
- import useControlsService from './api/services/ControlsService'
42
- import useSearchService from './api/services/SearchService'
43
- import useModulesService from './api/services/ModulesService'
44
- import useCommentsService from './api/services/CommentsService'
45
- import useEquipmentService from './api/services/EquipmentService'
46
- import useBrigadesService from './api/services/BrigadesService'
47
- import useScheduleService from './api/services/ScheduleService'
48
-
49
- import useFaceApiHelper from './utils/faceApiHelper'
50
-
51
- export {
52
- AppButton,
53
- AppCheckbox,
54
- AppDatepicker,
55
- AppDatePicker,
56
- AppInput,
57
- AppInputNew,
58
- AppInputSearch,
59
- AppLayout,
60
- AppLayoutHeader,
61
- AppLayoutPage,
62
- AppLoader,
63
- AppSelect,
64
- AppSheet,
65
- AppSheetNew,
66
- AppSidebar,
67
- AppToggle,
68
- AppWrapper,
69
- AppConfirmDialog,
70
- AppDropdown,
71
- AppTablePagination,
72
- AppTableSearch,
73
- AppTableModal,
74
- AppTable,
75
- AppTableLayout,
76
- AppModalSelect,
77
- AppModal,
78
- AppFile,
79
- }
80
-
81
- export {
82
- ApiService,
83
- useAuthService,
84
- useGanttService,
85
- useMetricsService,
86
- useProjectsService,
87
- useRepairsService,
88
- useTasksService,
89
- useFileService,
90
- useControlsService,
91
- useVideoService,
92
- useUserService,
93
- useInstrumentsService,
94
- useSearchService,
95
- useModulesService,
96
- useCommentsService,
97
- useFaceApiHelper,
98
- useEquipmentService,
99
- useBrigadesService,
100
- useScheduleService,
101
- }
102
-
103
- export { useBaseTable } from './common/app-table/controllers/useBaseTable'
104
- export { useTableModel } from './common/app-table/controllers/useTableModel'
105
- export { useColumnSelector } from './common/app-table/controllers/useColumnSelector'
106
-
107
- export type { FilterOption, TableModel, TableColumn } from './common/app-table/controllers/useTableModel'
108
-
109
- export type { NotificationType } from './utils/notification'
110
- export { notificationSettings } from './utils/notification'
111
-
112
- export * from './utils/helpers'
113
- export * from './utils/files'
114
-
115
- export * from './api/types/Api_Service'
116
- export * from './api/types/Api_Auth'
117
- export * from './api/types/Api_Tasks'
118
- export * from './api/types/Api_Repairs'
119
- export * from './api/types/Api_Projects'
120
- export * from './api/types/Api_Controls'
121
- export * from './api/types/Api_Instruments'
122
- export * from './api/types/Api_Search'
123
- export * from './api/types/Api_User'
124
- export * from './api/types/Api_Comment'
125
- export * from './api/types/Api_Files'
126
- export * from './api/types/Api_Video'
127
- export * from './api/types/Api_Equipment'
128
- export * from './api/types/Api_Brigades'
129
- export * from './api/types/Api_Modules'
130
- export * from './api/types/Api_Schedule'
131
- export * from './api/types/Api_Metrics'
1
+ import './shared/styles/general.css'
2
+ import AppButton from './common/app-button/AppButton.vue'
3
+ import AppCheckbox from './common/app-checkbox/AppCheckbox.vue'
4
+ import AppDatePicker from './common/app-date-picker/AppDatePicker.vue'
5
+ import AppDatepicker from './common/app-datepicker/AppDatepicker.vue'
6
+ import AppInput from './common/app-input/AppInput.vue'
7
+ import AppInputNew from './common/app-input-new/AppInputNew.vue'
8
+ import AppInputSearch from './common/app-input-search/AppInputSearch.vue'
9
+ import AppLayout from './common/app-layout/AppLayout.vue'
10
+ import AppLayoutHeader from './common/app-layout/components/AppLayoutHeader.vue'
11
+ import AppLayoutPage from './common/app-layout/components/AppLayoutPage.vue'
12
+ import AppLoader from './common/app-loader/index.vue'
13
+ import AppSelect from './common/app-select/AppSelect.vue'
14
+ import AppSheet from './common/app-sheet/AppSheet.vue'
15
+ import AppSheetNew from './common/app-sheet-new/AppSheetNew.vue'
16
+ import AppSidebar from './common/app-sidebar/AppSidebar.vue'
17
+ import AppToggle from './common/app-toggle/AppToggle.vue'
18
+ import AppWrapper from './common/app-wrapper/AppWrapper.vue'
19
+ import AppConfirmDialog from './common/app-dialogs/AppConfirmDialog.vue'
20
+ import AppDropdown from './common/app-dropdown/AppDropdown.vue'
21
+ import AppTablePagination from './common/app-table/components/TablePagination.vue'
22
+ import AppTableSearch from './common/app-table/components/TableSearch.vue'
23
+ import AppTableModal from './common/app-table/components/TableModal.vue'
24
+ import AppTable from './common/app-table/AppTable.vue'
25
+ import AppTableLayout from './common/app-table/AppTableLayout.vue'
26
+ import AppModalSelect from './common/app-table/components/ModalSelect.vue'
27
+ import AppModal from './common/app-modal/index.vue'
28
+ import AppFile from './common/app-file/AppFile.vue'
29
+
30
+ import ApiService from './api/settings/ApiService'
31
+ import useGanttService from './api/services/GanttService'
32
+ import useMetricsService from './api/services/MetricsService'
33
+ import useProjectsService from './api/services/ProjectsService'
34
+ import useRepairsService from './api/services/RepairsService'
35
+ import useTasksService from './api/services/TasksService'
36
+ import useAuthService from './api/services/AuthService'
37
+ import useFileService from './api/services/FileService'
38
+ import useVideoService from './api/services/VideoService'
39
+ import useUserService from './api/services/UserService'
40
+ import useInstrumentsService from './api/services/InstrumentsService'
41
+ import useControlsService from './api/services/ControlsService'
42
+ import useSearchService from './api/services/SearchService'
43
+ import useModulesService from './api/services/ModulesService'
44
+ import useCommentsService from './api/services/CommentsService'
45
+ import useEquipmentService from './api/services/EquipmentService'
46
+ import useBrigadesService from './api/services/BrigadesService'
47
+ import useScheduleService from './api/services/ScheduleService'
48
+
49
+ import useFaceApiHelper from './utils/faceApiHelper'
50
+
51
+ export {
52
+ AppButton,
53
+ AppCheckbox,
54
+ AppDatepicker,
55
+ AppDatePicker,
56
+ AppInput,
57
+ AppInputNew,
58
+ AppInputSearch,
59
+ AppLayout,
60
+ AppLayoutHeader,
61
+ AppLayoutPage,
62
+ AppLoader,
63
+ AppSelect,
64
+ AppSheet,
65
+ AppSheetNew,
66
+ AppSidebar,
67
+ AppToggle,
68
+ AppWrapper,
69
+ AppConfirmDialog,
70
+ AppDropdown,
71
+ AppTablePagination,
72
+ AppTableSearch,
73
+ AppTableModal,
74
+ AppTable,
75
+ AppTableLayout,
76
+ AppModalSelect,
77
+ AppModal,
78
+ AppFile,
79
+ }
80
+
81
+ export {
82
+ ApiService,
83
+ useAuthService,
84
+ useGanttService,
85
+ useMetricsService,
86
+ useProjectsService,
87
+ useRepairsService,
88
+ useTasksService,
89
+ useFileService,
90
+ useControlsService,
91
+ useVideoService,
92
+ useUserService,
93
+ useInstrumentsService,
94
+ useSearchService,
95
+ useModulesService,
96
+ useCommentsService,
97
+ useFaceApiHelper,
98
+ useEquipmentService,
99
+ useBrigadesService,
100
+ useScheduleService,
101
+ }
102
+
103
+ export { useBaseTable } from './common/app-table/controllers/useBaseTable'
104
+ export { useTableModel } from './common/app-table/controllers/useTableModel'
105
+ export { useColumnSelector } from './common/app-table/controllers/useColumnSelector'
106
+
107
+ export type { FilterOption, TableModel, TableColumn } from './common/app-table/controllers/useTableModel'
108
+
109
+ export type { NotificationType } from './utils/notification'
110
+ export { notificationSettings } from './utils/notification'
111
+
112
+ export * from './utils/helpers'
113
+ export * from './utils/files'
114
+
115
+ export * from './api/types/Api_Service'
116
+ export * from './api/types/Api_Auth'
117
+ export * from './api/types/Api_Tasks'
118
+ export * from './api/types/Api_Repairs'
119
+ export * from './api/types/Api_Projects'
120
+ export * from './api/types/Api_Controls'
121
+ export * from './api/types/Api_Instruments'
122
+ export * from './api/types/Api_Search'
123
+ export * from './api/types/Api_User'
124
+ export * from './api/types/Api_Comment'
125
+ export * from './api/types/Api_Files'
126
+ export * from './api/types/Api_Video'
127
+ export * from './api/types/Api_Equipment'
128
+ export * from './api/types/Api_Brigades'
129
+ export * from './api/types/Api_Modules'
130
+ export * from './api/types/Api_Schedule'
131
+ export * from './api/types/Api_Metrics'
@@ -1,124 +1,140 @@
1
- :root {
2
- --main-header-height: 73px;
3
- --main-footer-height: 66px;
4
- --sidebar-width-max: 250px;
5
- --sidebar-width-min: 66px;
6
- }
7
-
8
- /*border-radius*/
9
- :root {
10
- --border-radius-xxs: 4px;
11
- --border-radius-xs: 8px;
12
- --border-radius-s: 12px;
13
- --border-radius-m: 16px;
14
- }
15
-
16
- /*color*/
17
- :root {
18
- --g-blue: #3f8cff;
19
- --g-blue-light: #e4efff;
20
- --g-blue-dark: #1c75ff;
21
- --g-green: #00d097;
22
- --g-green-light: #e0f9f2;
23
- --g-green-dark: #b8f8e7;
24
- --g-red: #ff192d;
25
- --g-red-light: #fdecee;
26
- --g-red-dark: #ffdcde;
27
- --g-grey-100: #d8e0f0;
28
-
29
- --g-font-color: #0a1629;
30
- --g-font-grey-color: #b9c0c7;
31
- --g-font-secondary-color: #7d8592;
32
-
33
- --g-grey-background: #ced5e0;
34
- --g-grey-hover-background: #9fa5af;
35
- --g-secondary-background: #f4f9fd;
36
- --g-thirty-background: #c8cbcf;
37
-
38
- --g-fire-color-1: #fee7e7;
39
- --g-fire-color-2: #fed4d5;
40
- --g-fire-color-3: #fcc0c0;
41
- --g-fire-color-4: #f9a2a2;
42
- --g-fire-color-5: #f97d7e;
43
- --g-fire-color-6: #f65160;
44
- --g-fire-color-7: #ff192d;
45
- --g-fire-color-8: #ab0514;
46
- --g-fire-color-9: #6e000a;
47
- }
48
-
49
- * {
50
- margin: 0;
51
- padding: 0;
52
- }
53
-
54
- button:active,
55
- button:focus {
56
- outline: none !important;
57
- }
58
-
59
- html {
60
- font-family: 'NunitoSansFont', sans-serif !important;
61
- }
62
-
63
- .ant-dropdown {
64
- z-index: 10000;
65
- .content {
66
- z-index: 10000;
67
- }
68
- }
69
-
70
- @font-face {
71
- font-family: 'NunitoSansFont';
72
- src: local('NunitoSansFont-Regular'), url('../fonts/NunitoSansFont.ttf') format('truetype');
73
- font-weight: 400;
74
- font-style: normal;
75
- }
76
-
77
- @font-face {
78
- font-family: 'NunitoSansFont';
79
- src: local('NunitoSansFont-Bold'), url('../fonts/NunitoSans_7pt-Bold.ttf') format('truetype');
80
- font-weight: 700;
81
- font-style: normal;
82
- }
83
-
84
- @font-face {
85
- font-family: 'Montserrat';
86
- src: local('Montserrat-Regular'), url('../fonts/Montserrat.ttf') format('truetype');
87
- font-weight: 400;
88
- font-style: normal;
89
- }
90
-
91
- @font-face {
92
- font-family: 'Montserrat';
93
- src: local('Montserrat-Bold'), url('../fonts/Montserrat-Bold.ttf') format('truetype');
94
- font-weight: 700;
95
- font-style: normal;
96
- }
97
-
98
- @font-face {
99
- font-family: 'Inter';
100
- src: local('Inter-Regular'), url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
101
- font-weight: 400;
102
- font-style: normal;
103
- }
104
-
105
- @font-face {
106
- font-family: 'Inter';
107
- src: local('Inter-SemiBold'), url('../fonts/Inter_18pt-SemiBold.ttf') format('truetype');
108
- font-weight: 600;
109
- font-style: normal;
110
- }
111
-
112
- @font-face {
113
- font-family: 'Inter';
114
- src: local('Inter-Bold'), url('../fonts/Inter_18pt-Bold.ttf') format('truetype');
115
- font-weight: 700;
116
- font-style: normal;
117
- }
118
-
119
- @font-face {
120
- font-family: 'Inter';
121
- src: local('Inter-Black'), url('../fonts/Inter_18pt-Black.ttf') format('truetype');
122
- font-weight: 900;
123
- font-style: normal;
124
- }
1
+ :root {
2
+ --main-header-height: 73px;
3
+ --main-footer-height: 66px;
4
+ --sidebar-width-max: 250px;
5
+ --sidebar-width-min: 66px;
6
+ }
7
+
8
+ /*border-radius*/
9
+ :root {
10
+ --border-radius-xxs: 4px;
11
+ --border-radius-xs: 8px;
12
+ --border-radius-s: 12px;
13
+ --border-radius-m: 16px;
14
+ }
15
+
16
+ /*color*/
17
+ :root {
18
+ --g-blue: #3f8cff;
19
+ --g-blue-light: #e4efff;
20
+ --g-blue-dark: #1c75ff;
21
+ --g-green: #00d097;
22
+ --g-green-light: #e0f9f2;
23
+ --g-green-dark: #b8f8e7;
24
+ --g-red: #ff192d;
25
+ --g-red-light: #fdecee;
26
+ --g-red-dark: #ffdcde;
27
+ --g-grey-100: #d8e0f0;
28
+
29
+ --g-font-color: #0a1629;
30
+ --g-font-grey-color: #b9c0c7;
31
+ --g-font-secondary-color: #7d8592;
32
+
33
+ --g-grey-background: #ced5e0;
34
+ --g-grey-hover-background: #9fa5af;
35
+ --g-secondary-background: #f4f9fd;
36
+ --g-thirty-background: #c8cbcf;
37
+
38
+ --g-fire-color-1: #fee7e7;
39
+ --g-fire-color-2: #fed4d5;
40
+ --g-fire-color-3: #fcc0c0;
41
+ --g-fire-color-4: #f9a2a2;
42
+ --g-fire-color-5: #f97d7e;
43
+ --g-fire-color-6: #f65160;
44
+ --g-fire-color-7: #ff192d;
45
+ --g-fire-color-8: #ab0514;
46
+ --g-fire-color-9: #6e000a;
47
+ }
48
+
49
+ * {
50
+ margin: 0;
51
+ padding: 0;
52
+ }
53
+
54
+ button:active,
55
+ button:focus {
56
+ outline: none !important;
57
+ }
58
+
59
+ html {
60
+ font-family: 'NunitoSansFont', sans-serif !important;
61
+ }
62
+
63
+ .ant-dropdown {
64
+ z-index: 10000;
65
+ .content {
66
+ z-index: 10000;
67
+ }
68
+ }
69
+
70
+ @font-face {
71
+ font-family: 'NunitoSansFont';
72
+ src:
73
+ local('NunitoSansFont-Regular'),
74
+ url('../fonts/NunitoSansFont.ttf') format('truetype');
75
+ font-weight: 400;
76
+ font-style: normal;
77
+ }
78
+
79
+ @font-face {
80
+ font-family: 'NunitoSansFont';
81
+ src:
82
+ local('NunitoSansFont-Bold'),
83
+ url('../fonts/NunitoSans_7pt-Bold.ttf') format('truetype');
84
+ font-weight: 700;
85
+ font-style: normal;
86
+ }
87
+
88
+ @font-face {
89
+ font-family: 'Montserrat';
90
+ src:
91
+ local('Montserrat-Regular'),
92
+ url('../fonts/Montserrat.ttf') format('truetype');
93
+ font-weight: 400;
94
+ font-style: normal;
95
+ }
96
+
97
+ @font-face {
98
+ font-family: 'Montserrat';
99
+ src:
100
+ local('Montserrat-Bold'),
101
+ url('../fonts/Montserrat-Bold.ttf') format('truetype');
102
+ font-weight: 700;
103
+ font-style: normal;
104
+ }
105
+
106
+ @font-face {
107
+ font-family: 'Inter';
108
+ src:
109
+ local('Inter-Regular'),
110
+ url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
111
+ font-weight: 400;
112
+ font-style: normal;
113
+ }
114
+
115
+ @font-face {
116
+ font-family: 'Inter';
117
+ src:
118
+ local('Inter-SemiBold'),
119
+ url('../fonts/Inter_18pt-SemiBold.ttf') format('truetype');
120
+ font-weight: 600;
121
+ font-style: normal;
122
+ }
123
+
124
+ @font-face {
125
+ font-family: 'Inter';
126
+ src:
127
+ local('Inter-Bold'),
128
+ url('../fonts/Inter_18pt-Bold.ttf') format('truetype');
129
+ font-weight: 700;
130
+ font-style: normal;
131
+ }
132
+
133
+ @font-face {
134
+ font-family: 'Inter';
135
+ src:
136
+ local('Inter-Black'),
137
+ url('../fonts/Inter_18pt-Black.ttf') format('truetype');
138
+ font-weight: 900;
139
+ font-style: normal;
140
+ }
@@ -1,12 +1,12 @@
1
- $primary : #1976D2
2
- $secondary : #C4C4C4
3
- $accent : #665BA6
4
- $positive : #3B9F69
5
- $negative : #C10015
6
- $info : #31CCEC
7
- $warning : #F2C037
8
-
9
- $dark : #1D1D1D
10
- $dark-page : #121212
11
-
12
- $secondary: #1D1D1D
1
+ $primary : #1976D2
2
+ $secondary : #C4C4C4
3
+ $accent : #665BA6
4
+ $positive : #3B9F69
5
+ $negative : #C10015
6
+ $info : #31CCEC
7
+ $warning : #F2C037
8
+
9
+ $dark : #1D1D1D
10
+ $dark-page : #121212
11
+
12
+ $secondary: #1D1D1D