simpo-component-library 3.1.0 → 3.1.2
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/esm2022/lib/elements/add-section/add-section.component.mjs +2 -1
- package/fesm2022/simpo-component-library.mjs +1 -0
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/package.json +1 -1
- package/simpo-component-library-3.1.2.tgz +0 -0
- package/src/lib/styles/global-styles.css +43 -0
- package/simpo-component-library-3.1.0.tgz +0 -0
package/package.json
CHANGED
Binary file
|
@@ -1,3 +1,46 @@
|
|
1
|
+
:root {
|
2
|
+
--primary-font-family: 'mulish';
|
3
|
+
--primary-bg-color: linear-gradient(94.22deg, #283E90 -4.45%, #F000E8 111.88%);
|
4
|
+
--primary-color: white;
|
5
|
+
}
|
6
|
+
.add-section {
|
7
|
+
position: absolute !important;
|
8
|
+
width: 40%;
|
9
|
+
top: 0;
|
10
|
+
left: 0 !important;
|
11
|
+
height: 100vh;
|
12
|
+
background-color: transparent !important;
|
13
|
+
box-shadow: none !important;
|
14
|
+
animation: slideInLeft 0.5s ease-in-out forwards;
|
15
|
+
}
|
16
|
+
|
17
|
+
.add-section.closing {
|
18
|
+
animation: slideOutLeft 0.5 s ease-in-out forwards;
|
19
|
+
}
|
20
|
+
|
21
|
+
@keyframes slideInLeft {
|
22
|
+
from {
|
23
|
+
transform: translateX(-100%);
|
24
|
+
opacity: 0;
|
25
|
+
}
|
26
|
+
to {
|
27
|
+
transform: translateX(0);
|
28
|
+
opacity: 1;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
@keyframes slideOutLeft {
|
33
|
+
from {
|
34
|
+
transform: translateX(0);
|
35
|
+
opacity: 1;
|
36
|
+
}
|
37
|
+
to {
|
38
|
+
transform: translateX(-100%); /* Close to the left side */
|
39
|
+
opacity: 0;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
|
43
|
+
|
1
44
|
@media screen and (min-width: 1280px) {
|
2
45
|
.content-side {
|
3
46
|
h1 {
|
Binary file
|