@pmidc/upyog-css 1.2.36-UAT.11 → 1.2.36-UAT.12
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 +73 -2
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/modules/BPA/index.scss +69 -3
package/dist/index.css
CHANGED
|
@@ -19628,8 +19628,12 @@ body {
|
|
|
19628
19628
|
color: red; }
|
|
19629
19629
|
|
|
19630
19630
|
.close-btn {
|
|
19631
|
-
|
|
19632
|
-
|
|
19631
|
+
padding: 5px 10px; }
|
|
19632
|
+
.close-btn:hover {
|
|
19633
|
+
-webkit-transform: translateY(-2px) !important;
|
|
19634
|
+
transform: translateY(-2px) !important;
|
|
19635
|
+
-webkit-box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32) !important;
|
|
19636
|
+
box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32) !important; }
|
|
19633
19637
|
|
|
19634
19638
|
.advisory-text {
|
|
19635
19639
|
font-size: 13px;
|
|
@@ -19763,6 +19767,73 @@ body {
|
|
|
19763
19767
|
display: inline;
|
|
19764
19768
|
padding-left: 180px; }
|
|
19765
19769
|
|
|
19770
|
+
.custom-loader-overlay {
|
|
19771
|
+
position: fixed;
|
|
19772
|
+
top: 0;
|
|
19773
|
+
left: 0;
|
|
19774
|
+
width: 100%;
|
|
19775
|
+
height: 100vh;
|
|
19776
|
+
-webkit-box-orient: vertical;
|
|
19777
|
+
-webkit-box-direction: normal;
|
|
19778
|
+
-ms-flex-direction: column;
|
|
19779
|
+
flex-direction: column;
|
|
19780
|
+
background-color: rgba(255, 255, 255, 0.95);
|
|
19781
|
+
z-index: 9999;
|
|
19782
|
+
grid-gap: 30px;
|
|
19783
|
+
gap: 30px;
|
|
19784
|
+
backdrop-filter: blur(15px); }
|
|
19785
|
+
|
|
19786
|
+
.custom-loader-overlay, .custom-loader-spinner-wrapper {
|
|
19787
|
+
display: -webkit-box;
|
|
19788
|
+
display: -ms-flexbox;
|
|
19789
|
+
display: flex;
|
|
19790
|
+
-webkit-box-align: center;
|
|
19791
|
+
-ms-flex-align: center;
|
|
19792
|
+
align-items: center;
|
|
19793
|
+
-webkit-box-pack: center;
|
|
19794
|
+
-ms-flex-pack: center;
|
|
19795
|
+
justify-content: center; }
|
|
19796
|
+
|
|
19797
|
+
.custom-loader-spinner-wrapper {
|
|
19798
|
+
width: 130px;
|
|
19799
|
+
height: 130px;
|
|
19800
|
+
position: relative;
|
|
19801
|
+
-webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
|
|
19802
|
+
filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08)); }
|
|
19803
|
+
|
|
19804
|
+
.custom-loader-spinner {
|
|
19805
|
+
position: absolute;
|
|
19806
|
+
width: 100%;
|
|
19807
|
+
height: 100%;
|
|
19808
|
+
border-right: 12px solid #f0f0f0;
|
|
19809
|
+
border-top: 12px solid #f0f0f0;
|
|
19810
|
+
border-color: #1a1a1a #1a1a1a #f0f0f0 #f0f0f0;
|
|
19811
|
+
border-style: solid;
|
|
19812
|
+
border-width: 12px;
|
|
19813
|
+
border-radius: 50%;
|
|
19814
|
+
-webkit-animation: spin .8s linear infinite;
|
|
19815
|
+
animation: spin .8s linear infinite;
|
|
19816
|
+
-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
19817
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
|
|
19818
|
+
|
|
19819
|
+
.custom-loader-text {
|
|
19820
|
+
font-size: 18px;
|
|
19821
|
+
font-weight: 700;
|
|
19822
|
+
color: #1a1a1a;
|
|
19823
|
+
letter-spacing: .5px;
|
|
19824
|
+
display: -webkit-box;
|
|
19825
|
+
display: -ms-flexbox;
|
|
19826
|
+
display: flex;
|
|
19827
|
+
-webkit-box-align: baseline;
|
|
19828
|
+
-ms-flex-align: baseline;
|
|
19829
|
+
align-items: baseline;
|
|
19830
|
+
grid-gap: 2px;
|
|
19831
|
+
gap: 2px; }
|
|
19832
|
+
|
|
19833
|
+
.custom-loader-dots {
|
|
19834
|
+
min-width: 20px;
|
|
19835
|
+
display: inline-block; }
|
|
19836
|
+
|
|
19766
19837
|
.bpa-site-photograph-container {
|
|
19767
19838
|
padding: 50px 0;
|
|
19768
19839
|
display: -webkit-box;
|