-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcraco.config.js
63 lines (59 loc) · 1.83 KB
/
craco.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
const CracoLessPlugin = require('craco-less');
module.exports = {
style: {
postcss: {
plugins: [require('tailwindcss'), require('autoprefixer')],
},
},
plugins: [
{
plugin: CracoLessPlugin,
options: {
lessLoaderOptions: {
lessOptions: {
modifyVars: {
'@primary-color': '#79D38A',
'@body-background': '#0D1016',
'@component-background': '#0D1016',
'@text-color': '#fff',
'@menu-item-active-border-width': '10px',
'@input-bg': '#0D1016',
'@input-icon-color': '#fff',
'@breadcrumb-base-color': '#727272',
'@breadcrumb-last-item-color': '#DEFFEE',
'@breadcrumb-link-color': '#727272',
'@breadcrumb-separator-color': '#727272',
'@dropdown-menu-bg': '#0D1016',
'@modal-header-bg': '#0D1016',
'@select-item-selected-color': '#303030',
// Steps
// ---
// @process-tail-color: @border-color-split;
// @steps-nav-arrow-color: fade(@black, 25%);
'@steps-background': '#79D38A',
// @steps-icon-size: 32px;
// @steps-icon-custom-size: @steps-icon-size;
// @steps-icon-custom-top: 0px;
// @steps-icon-custom-font-size: 24px;
// @steps-icon-top: -0.5px;
// @steps-icon-font-size: @font-size-lg;
// @steps-icon-margin: 0 8px 0 0;
// @steps-title-line-height: @height-base;
// @steps-small-icon-size: 24px;
// @steps-small-icon-margin: 0 8px 0 0;
// @steps-dot-size: 8px;
// @steps-dot-top: 2px;
// @steps-current-dot-size: 10px;
// @steps-description-max-width: 140px;
// @steps-nav-content-max-width: auto;
// @steps-vertical-icon-width: 16px;
// @steps-vertical-tail-width: 16px;
// @steps-vertical-tail-width-sm: 12px;
},
javascriptEnabled: true,
},
},
},
},
],
};