@pmidc/upyog-css 1.2.50 → 1.2.51
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/index.css +70 -0
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/modules/rentAndLease/index.scss +50 -0
package/package.json
CHANGED
|
@@ -19,6 +19,56 @@
|
|
|
19
19
|
margin-top: -18px;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
+
.ral-last-paid-upto-label {
|
|
23
|
+
position: relative;
|
|
24
|
+
margin: 18px 0 10px;
|
|
25
|
+
padding: 12px 14px 12px 42px;
|
|
26
|
+
color: #163d63;
|
|
27
|
+
font-size: 13px;
|
|
28
|
+
font-weight: 600;
|
|
29
|
+
line-height: 1.45;
|
|
30
|
+
background: linear-gradient(90deg, #eaf4fb 0%, #f7fbfe 100%);
|
|
31
|
+
border: 1px solid #b7d8ed;
|
|
32
|
+
border-left: 4px solid #fa001d;
|
|
33
|
+
border-radius: 4px;
|
|
34
|
+
box-shadow: 0 2px 6px rgba(13, 110, 168, 0.08);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.ral-last-paid-upto-hidden {
|
|
38
|
+
display: none;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.ral-arrear-details-hidden {
|
|
42
|
+
display: none;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.ral-last-paid-upto-label::before {
|
|
46
|
+
content: "i";
|
|
47
|
+
position: absolute;
|
|
48
|
+
top: 50%;
|
|
49
|
+
left: 13px;
|
|
50
|
+
display: flex;
|
|
51
|
+
width: 18px;
|
|
52
|
+
height: 18px;
|
|
53
|
+
align-items: center;
|
|
54
|
+
justify-content: center;
|
|
55
|
+
color: #fff;
|
|
56
|
+
font-family: Georgia, serif;
|
|
57
|
+
font-size: 13px;
|
|
58
|
+
font-weight: 700;
|
|
59
|
+
line-height: 1;
|
|
60
|
+
background: #0d6ea8;
|
|
61
|
+
border-radius: 50%;
|
|
62
|
+
transform: translateY(-50%);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@media (max-width: 780px) {
|
|
66
|
+
.ral-last-paid-upto-label {
|
|
67
|
+
margin-top: 14px;
|
|
68
|
+
padding: 10px 12px 10px 38px;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
22
72
|
/* Desktop view - margin-left 50% */
|
|
23
73
|
@media (min-width: 768px) {
|
|
24
74
|
.ral-error-label {
|