l-min-components 1.0.1198 → 1.0.1200
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/package.json
CHANGED
|
@@ -32,12 +32,6 @@ const EnterpriseRightBar = ({ planState }) => {
|
|
|
32
32
|
></CustomDotsContainer>
|
|
33
33
|
);
|
|
34
34
|
};
|
|
35
|
-
const responsive = {
|
|
36
|
-
mobile: {
|
|
37
|
-
breakpoint: { max: 5000, min: 0 },
|
|
38
|
-
items: 1,
|
|
39
|
-
},
|
|
40
|
-
};
|
|
41
35
|
|
|
42
36
|
const host = window?.location?.hostname;
|
|
43
37
|
const port = window?.location?.port ? `:${window.location.port}` : "";
|
|
@@ -64,7 +58,7 @@ const EnterpriseRightBar = ({ planState }) => {
|
|
|
64
58
|
// defaultActiveIndex={0}
|
|
65
59
|
// customDot={<CustomDots />}
|
|
66
60
|
autoPlay
|
|
67
|
-
infiniteLoop
|
|
61
|
+
infiniteLoop={courses?.length > 1}
|
|
68
62
|
showArrows={false}
|
|
69
63
|
showStatus={false}
|
|
70
64
|
showThumbs={false}
|
|
@@ -223,6 +217,9 @@ const EnterpriseContainer = styled.div`
|
|
|
223
217
|
bottom: 30;
|
|
224
218
|
}
|
|
225
219
|
}
|
|
220
|
+
.more-slot {
|
|
221
|
+
padding: 0px !important;
|
|
222
|
+
}
|
|
226
223
|
`;
|
|
227
224
|
|
|
228
225
|
const Course = styled.div`
|