@egovernments/digit-ui-components-css 0.0.2-beta.41 → 0.0.2-beta.43

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@egovernments/digit-ui-components-css",
3
- "version": "0.0.2-beta.41",
3
+ "version": "0.0.2-beta.43",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "Jagankumar <jagan.kumar@egovernments.org>",
@@ -0,0 +1,47 @@
1
+ .digit-animation{
2
+ width: fit-content;
3
+ }
4
+
5
+ .digit-loader-new {
6
+ display: flex;
7
+ flex-direction: column;
8
+ justify-content: center;
9
+ width: fit-content;
10
+ align-items: center;
11
+
12
+ .digit-loader-text {
13
+ @extend .typography.caption-s;
14
+ color: theme(digitv2.lightTheme.primary-2);
15
+ }
16
+
17
+ &.PageLoader {
18
+ position: fixed;
19
+ top: 0;
20
+ left: 0;
21
+ width: 100%;
22
+ height: 100%;
23
+ }
24
+
25
+ &.OverlayLoader {
26
+
27
+ position: fixed;
28
+ top: 0;
29
+ left: 0;
30
+ width: 100%;
31
+ height: 100%;
32
+ background-color: rgba(11, 12, 12, 0.7);
33
+ z-index: 9999;
34
+ backdrop-filter: blur(0.125rem);
35
+ -webkit-backdrop-filter: blur(0.125rem);
36
+
37
+ .digit-loader-text{
38
+ color: theme(digitv2.lightTheme.paper-primary);
39
+ }
40
+ }
41
+ }
42
+
43
+ .custom-loader-example{
44
+ .digit-loader-text{
45
+ color: theme(digitv2.lightTheme.primary-1);
46
+ }
47
+ }
@@ -153,6 +153,10 @@
153
153
  .timeline-individual-element {
154
154
  @apply w-full max-w-full;
155
155
 
156
+ &.hidden{
157
+ display: none;
158
+ }
159
+
156
160
  }
157
161
  }
158
162
 
@@ -52,6 +52,7 @@
52
52
  @import url("./components/formCardV2.scss");
53
53
  @import url("./components/filterCardV2.scss");
54
54
  @import url("./components/viewCardV2.scss");
55
+ @import url("./components/loaderV2.scss");
55
56
 
56
57
  /* pages */
57
58
  @import url("./pages/employee/index.scss");