@pareto-engineering/design-system 4.0.0-alpha.5 → 4.0.0-alpha.9
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/cjs/a/AnimatedBlobs/AnimatedBlobs.js +90 -0
- package/dist/cjs/a/AnimatedBlobs/index.js +13 -0
- package/dist/cjs/a/AnimatedBlobs/styles.scss +87 -0
- package/dist/cjs/a/AnimatedGradient/AnimatedGradient.js +56 -0
- package/dist/cjs/a/AnimatedGradient/index.js +13 -0
- package/dist/cjs/a/AnimatedGradient/styles.scss +14 -0
- package/dist/cjs/a/AnimatedGradient/webGIRenderer.js +528 -0
- package/dist/cjs/a/ContentTree/ContentTree.js +1 -1
- package/dist/cjs/a/Label/Label.js +12 -4
- package/dist/cjs/a/Label/styles.scss +1 -1
- package/dist/cjs/a/MetaCard/MetaCard.js +60 -0
- package/dist/cjs/a/MetaCard/index.js +13 -0
- package/dist/cjs/a/MetaCard/styles.scss +28 -0
- package/dist/cjs/a/Popover/Popover.js +1 -1
- package/dist/cjs/a/SnapScroller/styles.scss +18 -10
- package/dist/cjs/a/TextSteps/TextSteps.js +70 -0
- package/dist/cjs/a/TextSteps/index.js +13 -0
- package/dist/cjs/a/TextSteps/styles.scss +29 -0
- package/dist/cjs/a/Tip/Tip.js +72 -0
- package/dist/cjs/a/Tip/index.js +13 -0
- package/dist/cjs/a/Tip/styles.scss +22 -0
- package/dist/cjs/a/index.js +36 -1
- package/dist/cjs/b/Button/styles.scss +2 -0
- package/dist/cjs/b/Card/Card.js +74 -0
- package/dist/cjs/b/Card/common/Group/Group.js +73 -0
- package/dist/cjs/b/Card/common/Group/index.js +13 -0
- package/dist/cjs/b/Card/common/Group/styles.scss +42 -0
- package/dist/cjs/b/Card/common/Section/Section.js +59 -0
- package/dist/cjs/b/Card/common/Section/index.js +13 -0
- package/dist/cjs/b/Card/common/index.js +19 -0
- package/dist/cjs/b/Card/index.js +13 -0
- package/dist/cjs/b/Card/styles.scss +46 -0
- package/dist/cjs/b/Page/Page.js +9 -2
- package/dist/cjs/b/Page/common/Section/Section.js +6 -1
- package/dist/cjs/b/Page/styles.scss +22 -4
- package/dist/cjs/b/index.js +8 -1
- package/dist/cjs/f/fields/ChoicesInput/ChoicesInput.js +15 -7
- package/dist/cjs/f/fields/ChoicesInput/styles.scss +21 -33
- package/dist/cjs/f/fields/SelectInput/SelectInput.js +2 -2
- package/dist/cjs/f/fields/SelectInput/styles.scss +31 -21
- package/dist/cjs/f/fields/TextInput/TextInput.js +4 -2
- package/dist/cjs/f/fields/TextInput/styles.scss +26 -17
- package/dist/es/a/AnimatedBlobs/AnimatedBlobs.js +82 -0
- package/dist/es/a/AnimatedBlobs/index.js +1 -0
- package/dist/es/a/AnimatedBlobs/styles.scss +87 -0
- package/dist/es/a/AnimatedGradient/AnimatedGradient.js +48 -0
- package/dist/es/a/AnimatedGradient/index.js +1 -0
- package/dist/es/a/AnimatedGradient/styles.scss +14 -0
- package/dist/es/a/AnimatedGradient/webGIRenderer.js +492 -0
- package/dist/es/a/ContentTree/ContentTree.js +1 -1
- package/dist/es/a/Label/Label.js +12 -4
- package/dist/es/a/Label/styles.scss +1 -1
- package/dist/es/a/MetaCard/MetaCard.js +52 -0
- package/dist/es/a/MetaCard/index.js +1 -0
- package/dist/es/a/MetaCard/styles.scss +28 -0
- package/dist/es/a/Popover/Popover.js +1 -1
- package/dist/es/a/SnapScroller/styles.scss +18 -10
- package/dist/es/a/TextSteps/TextSteps.js +61 -0
- package/dist/es/a/TextSteps/index.js +1 -0
- package/dist/es/a/TextSteps/styles.scss +29 -0
- package/dist/es/a/Tip/Tip.js +64 -0
- package/dist/es/a/Tip/index.js +2 -0
- package/dist/es/a/Tip/styles.scss +22 -0
- package/dist/es/a/index.js +6 -1
- package/dist/es/b/Button/styles.scss +2 -0
- package/dist/es/b/Card/Card.js +66 -0
- package/dist/es/b/Card/common/Group/Group.js +65 -0
- package/dist/es/b/Card/common/Group/index.js +1 -0
- package/dist/es/b/Card/common/Group/styles.scss +42 -0
- package/dist/es/b/Card/common/Section/Section.js +48 -0
- package/dist/es/b/Card/common/Section/index.js +1 -0
- package/dist/es/b/Card/common/index.js +2 -0
- package/dist/es/b/Card/index.js +1 -0
- package/dist/es/b/Card/styles.scss +46 -0
- package/dist/es/b/Page/Page.js +9 -2
- package/dist/es/b/Page/common/Section/Section.js +6 -1
- package/dist/es/b/Page/styles.scss +22 -4
- package/dist/es/b/index.js +2 -1
- package/dist/es/f/fields/ChoicesInput/ChoicesInput.js +16 -8
- package/dist/es/f/fields/ChoicesInput/styles.scss +21 -33
- package/dist/es/f/fields/SelectInput/SelectInput.js +2 -2
- package/dist/es/f/fields/SelectInput/styles.scss +31 -21
- package/dist/es/f/fields/TextInput/TextInput.js +4 -2
- package/dist/es/f/fields/TextInput/styles.scss +26 -17
- package/package.json +15 -15
- package/src/stories/a/MetaCard.stories.jsx +35 -0
- package/src/stories/a/TextSteps.stories.jsx +19 -0
- package/src/stories/a/Tip.stories.jsx +28 -0
- package/src/stories/b/Card/Card.stories.jsx +59 -0
- package/src/stories/b/Card/Group.stories.jsx +59 -0
- package/src/stories/b/Page.stories.jsx +19 -3
- package/src/stories/f/SelectInput.stories.jsx +7 -0
- package/src/stories/f/TextInput.stories.jsx +4 -4
- package/src/ui/a/AnimatedBlobs/AnimatedBlobs.jsx +102 -0
- package/src/ui/a/AnimatedBlobs/index.js +1 -0
- package/src/ui/a/AnimatedBlobs/styles.scss +87 -0
- package/src/ui/a/AnimatedGradient/AnimatedGradient.jsx +69 -0
- package/src/ui/a/AnimatedGradient/index.js +1 -0
- package/src/ui/a/AnimatedGradient/styles.scss +14 -0
- package/src/ui/a/AnimatedGradient/webGIRenderer.js +541 -0
- package/src/ui/a/ContentTree/ContentTree.jsx +1 -1
- package/src/ui/a/Label/Label.jsx +11 -2
- package/src/ui/a/Label/styles.scss +1 -1
- package/src/ui/a/MetaCard/MetaCard.jsx +74 -0
- package/src/ui/a/MetaCard/index.js +1 -0
- package/src/ui/a/MetaCard/styles.scss +28 -0
- package/src/ui/a/Popover/Popover.jsx +1 -1
- package/src/ui/a/SnapScroller/styles.scss +18 -10
- package/src/ui/a/TextSteps/TextSteps.jsx +87 -0
- package/src/ui/a/TextSteps/index.js +1 -0
- package/src/ui/a/TextSteps/styles.scss +29 -0
- package/src/ui/a/Tip/Tip.jsx +88 -0
- package/src/ui/a/Tip/index.js +2 -0
- package/src/ui/a/Tip/styles.scss +22 -0
- package/src/ui/a/index.js +5 -0
- package/src/ui/b/Button/styles.scss +2 -0
- package/src/ui/b/Card/Card.jsx +94 -0
- package/src/ui/b/Card/common/Group/Group.jsx +91 -0
- package/src/ui/b/Card/common/Group/index.js +1 -0
- package/src/ui/b/Card/common/Group/styles.scss +42 -0
- package/src/ui/b/Card/common/Section/Section.jsx +70 -0
- package/src/ui/b/Card/common/Section/index.js +1 -0
- package/src/ui/b/Card/common/index.js +2 -0
- package/src/ui/b/Card/index.js +1 -0
- package/src/ui/b/Card/styles.scss +46 -0
- package/src/ui/b/Page/Page.jsx +7 -1
- package/src/ui/b/Page/common/Section/Section.jsx +8 -0
- package/src/ui/b/Page/styles.scss +22 -4
- package/src/ui/b/index.js +1 -0
- package/src/ui/f/fields/ChoicesInput/ChoicesInput.jsx +10 -5
- package/src/ui/f/fields/ChoicesInput/styles.scss +21 -33
- package/src/ui/f/fields/SelectInput/SelectInput.jsx +2 -2
- package/src/ui/f/fields/SelectInput/styles.scss +31 -21
- package/src/ui/f/fields/TextInput/TextInput.jsx +11 -9
- package/src/ui/f/fields/TextInput/styles.scss +26 -17
- package/tests/__snapshots__/Storyshots.test.js.snap +1049 -485
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var React = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
9
|
+
var _exports = _interopRequireDefault(require("@pareto-engineering/bem/exports"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
12
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
13
|
+
// Local Definitions
|
|
14
|
+
|
|
15
|
+
const baseClassName = _exports.default.base;
|
|
16
|
+
const componentClassName = 'animated-blobs';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* This is the component description.
|
|
20
|
+
*/
|
|
21
|
+
const AnimatedBlobs = _ref => {
|
|
22
|
+
let {
|
|
23
|
+
id,
|
|
24
|
+
className: userClassName,
|
|
25
|
+
color,
|
|
26
|
+
style,
|
|
27
|
+
height,
|
|
28
|
+
width,
|
|
29
|
+
opacity
|
|
30
|
+
// ...otherProps
|
|
31
|
+
} = _ref;
|
|
32
|
+
(0, React.useInsertionEffect)(() => {
|
|
33
|
+
Promise.resolve().then(() => _interopRequireWildcard(require("./styles.scss")));
|
|
34
|
+
}, []);
|
|
35
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
36
|
+
id: id,
|
|
37
|
+
className: [baseClassName, componentClassName, userClassName].filter(e => e).join(' '),
|
|
38
|
+
style: {
|
|
39
|
+
...style,
|
|
40
|
+
'--blob-color': `var(--${color})`,
|
|
41
|
+
'--height': height,
|
|
42
|
+
'--opacity': opacity,
|
|
43
|
+
'--width': width
|
|
44
|
+
}
|
|
45
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
46
|
+
className: "shape-blob"
|
|
47
|
+
}), /*#__PURE__*/React.createElement("div", {
|
|
48
|
+
className: "shape-blob one"
|
|
49
|
+
}), /*#__PURE__*/React.createElement("div", {
|
|
50
|
+
className: "shape-blob two"
|
|
51
|
+
}));
|
|
52
|
+
};
|
|
53
|
+
AnimatedBlobs.propTypes = {
|
|
54
|
+
/**
|
|
55
|
+
* The HTML id for this element
|
|
56
|
+
*/
|
|
57
|
+
id: _propTypes.default.string,
|
|
58
|
+
/**
|
|
59
|
+
* The HTML class names for this element
|
|
60
|
+
*/
|
|
61
|
+
className: _propTypes.default.string,
|
|
62
|
+
/**
|
|
63
|
+
* The React-written, css properties for this element.
|
|
64
|
+
*/
|
|
65
|
+
style: _propTypes.default.objectOf(_propTypes.default.string),
|
|
66
|
+
/**
|
|
67
|
+
* The color of the blobs
|
|
68
|
+
*/
|
|
69
|
+
color: _propTypes.default.string,
|
|
70
|
+
/**
|
|
71
|
+
* The height of the blobs
|
|
72
|
+
*/
|
|
73
|
+
height: _propTypes.default.string,
|
|
74
|
+
/**
|
|
75
|
+
* The width of the blobs
|
|
76
|
+
*/
|
|
77
|
+
width: _propTypes.default.string,
|
|
78
|
+
/**
|
|
79
|
+
* The opacity of the blobs
|
|
80
|
+
*/
|
|
81
|
+
opacity: _propTypes.default.string
|
|
82
|
+
};
|
|
83
|
+
AnimatedBlobs.defaultProps = {
|
|
84
|
+
color: 'background-mesh',
|
|
85
|
+
height: '200px',
|
|
86
|
+
width: '200px',
|
|
87
|
+
opacity: '0.7'
|
|
88
|
+
};
|
|
89
|
+
var _default = AnimatedBlobs;
|
|
90
|
+
exports.default = _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "AnimatedBlobs", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _AnimatedBlobs.default;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _AnimatedBlobs = _interopRequireDefault(require("./AnimatedBlobs"));
|
|
13
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/* @pareto-engineering/generator-front 1.0.12 */
|
|
2
|
+
|
|
3
|
+
@use "@pareto-engineering/bem";
|
|
4
|
+
|
|
5
|
+
@keyframes transform {
|
|
6
|
+
0%,
|
|
7
|
+
100% {
|
|
8
|
+
border-radius: 33% 67% 70% 30% / 30% 30% 70% 70%;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
20% {
|
|
12
|
+
border-radius: 37% 63% 51% 49% / 37% 65% 35% 63%;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
40% {
|
|
16
|
+
border-radius: 36% 64% 64% 36% / 64% 48% 52% 36%;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
60% {
|
|
20
|
+
border-radius: 37% 63% 51% 49% / 30% 30% 70% 70%;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
80% {
|
|
24
|
+
border-radius: 40% 60% 42% 58% / 41% 51% 49% 59%;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
@keyframes movement_one {
|
|
28
|
+
0%,
|
|
29
|
+
100% {
|
|
30
|
+
transform: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
50% {
|
|
34
|
+
transform: translate(50%, 20%) rotateY(10deg) scale(1.2);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
@keyframes movement_two {
|
|
38
|
+
0%,
|
|
39
|
+
500% {
|
|
40
|
+
transform: none;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
50% {
|
|
44
|
+
transform: translate(50%, 20%) rotate(-200deg) scale(1.2);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.#{bem.$base}.animated-blobs {
|
|
49
|
+
height: 100%;
|
|
50
|
+
left: 0;
|
|
51
|
+
top: 0;
|
|
52
|
+
width: 100%;
|
|
53
|
+
|
|
54
|
+
> .shape-blob {
|
|
55
|
+
animation:
|
|
56
|
+
transform 20s ease-in-out infinite both alternate,
|
|
57
|
+
movement_one 40s ease-in-out infinite both;
|
|
58
|
+
background: var(--blob-color);
|
|
59
|
+
border-radius: 30% 50% 20% 40%;
|
|
60
|
+
height: var(--height);
|
|
61
|
+
left: 70%;
|
|
62
|
+
opacity: var(--opacity);
|
|
63
|
+
position: absolute;
|
|
64
|
+
top: 50%;
|
|
65
|
+
width: var(--width);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
> .shape-blob.one {
|
|
69
|
+
animation: transform 30s ease-in-out infinite both alternate,
|
|
70
|
+
movement_two 60s ease-in-out infinite both;
|
|
71
|
+
height: calc(var(--height) * 2.5);
|
|
72
|
+
left: -200px;
|
|
73
|
+
top: -150px;
|
|
74
|
+
transform: rotate(-180deg);
|
|
75
|
+
width: calc(var(--width) * 2.5);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
> .shape-blob.two {
|
|
79
|
+
animation: transform 30s ease-in-out infinite both alternate,
|
|
80
|
+
movement_two 60s ease-in-out infinite both;
|
|
81
|
+
height: calc(var(--height) * 1.75);
|
|
82
|
+
left: 500px;
|
|
83
|
+
top: -150px;
|
|
84
|
+
transform: rotate(-180deg);
|
|
85
|
+
width: calc(var(--width) * 1.75);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var React = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
9
|
+
var _exports = _interopRequireDefault(require("@pareto-engineering/bem/exports"));
|
|
10
|
+
var _webGIRenderer = require("./webGIRenderer");
|
|
11
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
12
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
13
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
14
|
+
// Local Definitions
|
|
15
|
+
|
|
16
|
+
const baseClassName = _exports.default.base;
|
|
17
|
+
const componentClassName = 'animated-gradient';
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* This is the component description.
|
|
21
|
+
*/
|
|
22
|
+
const AnimatedGradient = _ref => {
|
|
23
|
+
let {
|
|
24
|
+
className: userClassName
|
|
25
|
+
// ...otherProps
|
|
26
|
+
} = _ref;
|
|
27
|
+
(0, React.useInsertionEffect)(() => {
|
|
28
|
+
Promise.resolve().then(() => _interopRequireWildcard(require("./styles.scss")));
|
|
29
|
+
}, []);
|
|
30
|
+
const isClient = typeof window !== 'undefined';
|
|
31
|
+
(0, React.useEffect)(() => {
|
|
32
|
+
// Only initialize the Gradient if we're in the browser
|
|
33
|
+
if (isClient) {
|
|
34
|
+
const gradient = new _webGIRenderer.Gradient();
|
|
35
|
+
gradient.initGradient('#gradient-canvas');
|
|
36
|
+
}
|
|
37
|
+
}, []);
|
|
38
|
+
return /*#__PURE__*/React.createElement("canvas", {
|
|
39
|
+
id: "gradient-canvas",
|
|
40
|
+
"data-transition-in": true,
|
|
41
|
+
className: [baseClassName, componentClassName, userClassName].filter(e => e).join(' ')
|
|
42
|
+
// {...otherProps}
|
|
43
|
+
});
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
AnimatedGradient.propTypes = {
|
|
47
|
+
/**
|
|
48
|
+
* The HTML class names for this element
|
|
49
|
+
*/
|
|
50
|
+
className: _propTypes.default.string
|
|
51
|
+
};
|
|
52
|
+
AnimatedGradient.defaultProps = {
|
|
53
|
+
// primaryColor:'black',
|
|
54
|
+
};
|
|
55
|
+
var _default = AnimatedGradient;
|
|
56
|
+
exports.default = _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "AnimatedGradient", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _AnimatedGradient.default;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _AnimatedGradient = _interopRequireDefault(require("./AnimatedGradient"));
|
|
13
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* @pareto-engineering/generator-front 1.0.12 */
|
|
2
|
+
|
|
3
|
+
@use "@pareto-engineering/bem";
|
|
4
|
+
|
|
5
|
+
.#{bem.$base}.animated-gradient {
|
|
6
|
+
--gradient-color-1: var(--background-mesh);
|
|
7
|
+
--gradient-color-2: var(--soft-background-mesh);
|
|
8
|
+
--gradient-color-3: var(--background-mesh);
|
|
9
|
+
--gradient-color-4: var(--soft-background-mesh);
|
|
10
|
+
height: 100%;
|
|
11
|
+
left: 0;
|
|
12
|
+
top: 0;
|
|
13
|
+
width: 100%;
|
|
14
|
+
}
|