@tattvafoundation/upyog-css 1.0.18 → 1.0.19
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 +185 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/bmc.scss +214 -4
- package/src/pages/citizen/HomePageWrapper.scss +0 -1
package/dist/index.css
CHANGED
|
@@ -7882,7 +7882,6 @@ body {
|
|
|
7882
7882
|
padding-right: 15px;
|
|
7883
7883
|
padding-top: 0; } }
|
|
7884
7884
|
.HomePageWrapper .WhatsAppBanner {
|
|
7885
|
-
padding: 0 20px;
|
|
7886
7885
|
margin: auto;
|
|
7887
7886
|
cursor: pointer;
|
|
7888
7887
|
clear: both; }
|
|
@@ -9631,6 +9630,8 @@ body {
|
|
|
9631
9630
|
.bmc-modal .popup-module {
|
|
9632
9631
|
width: 650px;
|
|
9633
9632
|
text-align: center;
|
|
9633
|
+
-ms-flex-line-pack: center;
|
|
9634
|
+
align-content: center;
|
|
9634
9635
|
padding-bottom: 1rem;
|
|
9635
9636
|
border-radius: 10px;
|
|
9636
9637
|
--bg-opacity:1;
|
|
@@ -9772,6 +9773,189 @@ body {
|
|
|
9772
9773
|
max-width: 200px;
|
|
9773
9774
|
overflow: scroll; } }
|
|
9774
9775
|
|
|
9776
|
+
.bmc-modal-overlay {
|
|
9777
|
+
position: fixed;
|
|
9778
|
+
top: 0;
|
|
9779
|
+
left: 0;
|
|
9780
|
+
right: 0;
|
|
9781
|
+
bottom: 0;
|
|
9782
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
9783
|
+
display: -webkit-box;
|
|
9784
|
+
display: -ms-flexbox;
|
|
9785
|
+
display: flex;
|
|
9786
|
+
-webkit-box-pack: center;
|
|
9787
|
+
-ms-flex-pack: center;
|
|
9788
|
+
justify-content: center;
|
|
9789
|
+
-webkit-box-align: center;
|
|
9790
|
+
-ms-flex-align: center;
|
|
9791
|
+
align-items: center;
|
|
9792
|
+
z-index: 9999; }
|
|
9793
|
+
|
|
9794
|
+
.bmc-modal-content {
|
|
9795
|
+
background: #fff;
|
|
9796
|
+
width: 90%;
|
|
9797
|
+
max-width: 500px;
|
|
9798
|
+
border-radius: 10px;
|
|
9799
|
+
padding: 16px;
|
|
9800
|
+
position: relative;
|
|
9801
|
+
-webkit-box-sizing: border-box;
|
|
9802
|
+
box-sizing: border-box; }
|
|
9803
|
+
|
|
9804
|
+
.bmc-modal-header {
|
|
9805
|
+
display: -webkit-box;
|
|
9806
|
+
display: -ms-flexbox;
|
|
9807
|
+
display: flex;
|
|
9808
|
+
-webkit-box-pack: justify;
|
|
9809
|
+
-ms-flex-pack: justify;
|
|
9810
|
+
justify-content: space-between;
|
|
9811
|
+
-webkit-box-align: center;
|
|
9812
|
+
-ms-flex-align: center;
|
|
9813
|
+
align-items: center;
|
|
9814
|
+
font-size: 18px;
|
|
9815
|
+
padding-bottom: 16px; }
|
|
9816
|
+
|
|
9817
|
+
.bmc-modal-title {
|
|
9818
|
+
font-size: 18px;
|
|
9819
|
+
font-weight: 700; }
|
|
9820
|
+
|
|
9821
|
+
.close-btn {
|
|
9822
|
+
cursor: pointer;
|
|
9823
|
+
background-color: #ccc;
|
|
9824
|
+
padding: 10px;
|
|
9825
|
+
border-radius: 8px; }
|
|
9826
|
+
|
|
9827
|
+
.bmc-modal-body {
|
|
9828
|
+
padding-bottom: 16px; }
|
|
9829
|
+
|
|
9830
|
+
.bmc-modal-footer {
|
|
9831
|
+
display: -webkit-box;
|
|
9832
|
+
display: -ms-flexbox;
|
|
9833
|
+
display: flex;
|
|
9834
|
+
-webkit-box-pack: justify;
|
|
9835
|
+
-ms-flex-pack: justify;
|
|
9836
|
+
justify-content: space-between;
|
|
9837
|
+
grid-gap: 10px;
|
|
9838
|
+
gap: 10px;
|
|
9839
|
+
margin-top: 16px; }
|
|
9840
|
+
|
|
9841
|
+
@media screen and (max-width: 600px) {
|
|
9842
|
+
.bmc-modal-content {
|
|
9843
|
+
width: 95%;
|
|
9844
|
+
max-width: none;
|
|
9845
|
+
padding: 10px; }
|
|
9846
|
+
.bmc-modal-header {
|
|
9847
|
+
-webkit-box-align: start;
|
|
9848
|
+
-ms-flex-align: start;
|
|
9849
|
+
align-items: flex-start; }
|
|
9850
|
+
.bmc-modal-title {
|
|
9851
|
+
font-size: 16px;
|
|
9852
|
+
margin-bottom: 10px; }
|
|
9853
|
+
.bmc-modal-footer {
|
|
9854
|
+
-webkit-box-orient: vertical;
|
|
9855
|
+
-webkit-box-direction: normal;
|
|
9856
|
+
-ms-flex-direction: column;
|
|
9857
|
+
flex-direction: column;
|
|
9858
|
+
grid-gap: 8px;
|
|
9859
|
+
gap: 8px; }
|
|
9860
|
+
.close-btn {
|
|
9861
|
+
padding: 8px; } }
|
|
9862
|
+
|
|
9863
|
+
@media screen and (min-width: 601px) and (max-width: 1024px) {
|
|
9864
|
+
.bmc-modal-content {
|
|
9865
|
+
width: 80%;
|
|
9866
|
+
padding: 14px; }
|
|
9867
|
+
.bmc-modal-header {
|
|
9868
|
+
-webkit-box-orient: vertical;
|
|
9869
|
+
-webkit-box-direction: normal;
|
|
9870
|
+
-ms-flex-direction: column;
|
|
9871
|
+
flex-direction: column; }
|
|
9872
|
+
.bmc-modal-footer {
|
|
9873
|
+
-webkit-box-orient: horizontal;
|
|
9874
|
+
-webkit-box-direction: normal;
|
|
9875
|
+
-ms-flex-direction: row;
|
|
9876
|
+
flex-direction: row;
|
|
9877
|
+
-webkit-box-pack: justify;
|
|
9878
|
+
-ms-flex-pack: justify;
|
|
9879
|
+
justify-content: space-between; } }
|
|
9880
|
+
|
|
9881
|
+
@media screen and (min-width: 1025px) {
|
|
9882
|
+
.bmc-modal-content {
|
|
9883
|
+
width: 50%;
|
|
9884
|
+
padding: 20px; } }
|
|
9885
|
+
|
|
9886
|
+
.bmc-pagination2 {
|
|
9887
|
+
display: -webkit-box;
|
|
9888
|
+
display: -ms-flexbox;
|
|
9889
|
+
display: flex;
|
|
9890
|
+
-webkit-box-pack: center;
|
|
9891
|
+
-ms-flex-pack: center;
|
|
9892
|
+
justify-content: center;
|
|
9893
|
+
-webkit-box-align: center;
|
|
9894
|
+
-ms-flex-align: center;
|
|
9895
|
+
align-items: center;
|
|
9896
|
+
grid-gap: 1rem;
|
|
9897
|
+
gap: 1rem;
|
|
9898
|
+
margin-top: 1rem;
|
|
9899
|
+
-ms-flex-wrap: wrap;
|
|
9900
|
+
flex-wrap: wrap;
|
|
9901
|
+
padding: 0 1rem; }
|
|
9902
|
+
|
|
9903
|
+
.bmc-pagination2-button {
|
|
9904
|
+
padding: .5rem 1rem;
|
|
9905
|
+
font-size: 1rem;
|
|
9906
|
+
border: 1px solid #ddd;
|
|
9907
|
+
border-radius: 5px;
|
|
9908
|
+
background-color: #f4f4f4;
|
|
9909
|
+
cursor: pointer;
|
|
9910
|
+
-webkit-transition: background-color .3s;
|
|
9911
|
+
transition: background-color .3s; }
|
|
9912
|
+
|
|
9913
|
+
.bmc-pagination2-button.disabled {
|
|
9914
|
+
opacity: .5;
|
|
9915
|
+
cursor: not-allowed; }
|
|
9916
|
+
|
|
9917
|
+
.bmc-pagination2-info {
|
|
9918
|
+
font-size: 1rem; }
|
|
9919
|
+
|
|
9920
|
+
@media (max-width: 768px) {
|
|
9921
|
+
.bmc-pagination2 {
|
|
9922
|
+
grid-gap: .5rem;
|
|
9923
|
+
gap: .5rem; }
|
|
9924
|
+
.bmc-pagination2-button {
|
|
9925
|
+
padding: .5rem;
|
|
9926
|
+
font-size: .9rem; }
|
|
9927
|
+
.bmc-pagination2-info {
|
|
9928
|
+
font-size: .9rem; } }
|
|
9929
|
+
|
|
9930
|
+
@media (max-width: 480px) {
|
|
9931
|
+
.bmc-pagination2 {
|
|
9932
|
+
grid-gap: .25rem;
|
|
9933
|
+
gap: .25rem; }
|
|
9934
|
+
.bmc-pagination2-button {
|
|
9935
|
+
padding: .4rem .8rem;
|
|
9936
|
+
font-size: .8rem; }
|
|
9937
|
+
.bmc-pagination2-info {
|
|
9938
|
+
font-size: .8rem; } }
|
|
9939
|
+
|
|
9940
|
+
.WhatsAppBanner img {
|
|
9941
|
+
width: 100%; }
|
|
9942
|
+
|
|
9943
|
+
@media (max-width: 320px) {
|
|
9944
|
+
.WhatsAppBanner img {
|
|
9945
|
+
content: url(https://bmc-prod-s3.s3.ap-south-1.amazonaws.com/bmc-images/banner2forsmallscreen.png); } }
|
|
9946
|
+
|
|
9947
|
+
@media (max-width: 576px) {
|
|
9948
|
+
.WhatsAppBanner img {
|
|
9949
|
+
content: url(https://bmc-prod-s3.s3.ap-south-1.amazonaws.com/bmc-images/banner2forsmallscreen.png); } }
|
|
9950
|
+
|
|
9951
|
+
@media (max-width: 650px) {
|
|
9952
|
+
.WhatsAppBanner img {
|
|
9953
|
+
content: url(https://bmc-prod-s3.s3.ap-south-1.amazonaws.com/bmc-images/banner2forsmallscreen.png); } }
|
|
9954
|
+
|
|
9955
|
+
@media (max-width: 768px) {
|
|
9956
|
+
.WhatsAppBanner img {
|
|
9957
|
+
content: url(https://bmc-prod-s3.s3.ap-south-1.amazonaws.com/bmc-images/banner2forsmallscreen.png); } }
|
|
9958
|
+
|
|
9775
9959
|
@media (max-width: 768px) {
|
|
9776
9960
|
.deonar-security {
|
|
9777
9961
|
display: -webkit-box;
|