@tattvafoundation/upyog-css 1.0.40 → 1.0.41

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 CHANGED
@@ -922,6 +922,9 @@ img, video {
922
922
  .leading-tight {
923
923
  line-height: 1.25; }
924
924
 
925
+ .leading-snug {
926
+ line-height: 1.375; }
927
+
925
928
  .leading-relaxed {
926
929
  line-height: 1.625; }
927
930
 
@@ -1244,6 +1247,9 @@ img, video {
1244
1247
  .capitalize {
1245
1248
  text-transform: capitalize; }
1246
1249
 
1250
+ .normal-case {
1251
+ text-transform: none; }
1252
+
1247
1253
  .hover\:underline:hover, .underline {
1248
1254
  text-decoration: underline; }
1249
1255
 
@@ -11796,6 +11802,169 @@ button.submit-bar:hover {
11796
11802
  width: auto;
11797
11803
  padding: 0; }
11798
11804
 
11805
+ .deonar-flowchart .employee .ground-container {
11806
+ margin-bottom: 0 !important; }
11807
+
11808
+ .flowchart-header {
11809
+ --r:70px;
11810
+ line-height: 3;
11811
+ padding-left: 1em;
11812
+ padding-right: 1em;
11813
+ border-left: var(--r) solid transparent;
11814
+ border-right: var(--r) solid transparent;
11815
+ border-radius: calc(var(--r)*2) calc(var(--r)*2) 0 0/var(--r);
11816
+ -webkit-mask: radial-gradient(var(--r) at var(--r) 0, transparent 98%, #000 101%) calc(var(--r)*-1) 100%/100% var(--r) repeat-x, conic-gradient(#000 0, #000 0) padding-box;
11817
+ mask: radial-gradient(var(--r) at var(--r) 0, transparent 98%, #000 101%) calc(var(--r)*-1) 100%/100% var(--r) repeat-x, conic-gradient(#000 0, #000 0) padding-box;
11818
+ -webkit-mask: radial-gradient(var(--r) at var(--r) 0, transparent 98%, #000 101%) calc(var(--r)*-1) 100%/100% var(--r) repeat-x, conic-gradient(#000 0 0) padding-box;
11819
+ mask: radial-gradient(var(--r) at var(--r) 0, transparent 98%, #000 101%) calc(var(--r)*-1) 100%/100% var(--r) repeat-x, conic-gradient(#000 0 0) padding-box;
11820
+ background: #bd5532 border-box;
11821
+ width: -webkit-fit-content;
11822
+ width: -moz-fit-content;
11823
+ width: fit-content;
11824
+ background-color: #e57400;
11825
+ color: #fff;
11826
+ font-weight: 700; }
11827
+
11828
+ .verify-receipt-page .citizen .main {
11829
+ width: 100%;
11830
+ padding-top: 82px;
11831
+ -webkit-box-pack: center;
11832
+ -ms-flex-pack: center;
11833
+ justify-content: center; }
11834
+
11835
+ .verify-receipt-page .verify-reciept-main {
11836
+ max-width: 700px;
11837
+ width: 100%;
11838
+ padding: 12px;
11839
+ background-color: #f3f4f6;
11840
+ -webkit-box-sizing: border-box;
11841
+ box-sizing: border-box; }
11842
+
11843
+ .verify-receipt-page .verify-reciept-card {
11844
+ padding: 16px;
11845
+ border-radius: 12px;
11846
+ -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
11847
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
11848
+ background-color: #fff;
11849
+ width: 100%;
11850
+ -webkit-box-sizing: border-box;
11851
+ box-sizing: border-box;
11852
+ overflow-x: hidden; }
11853
+
11854
+ .verify-receipt-page .verify-reciept-card-header {
11855
+ color: #1f2937;
11856
+ border-bottom: 1px solid #e5e7eb;
11857
+ padding-bottom: 12px;
11858
+ margin-bottom: 16px;
11859
+ font-size: clamp(16px, 4vw, 20px);
11860
+ font-weight: 700;
11861
+ display: -webkit-box;
11862
+ display: -ms-flexbox;
11863
+ display: flex;
11864
+ -webkit-box-align: center;
11865
+ -ms-flex-align: center;
11866
+ align-items: center;
11867
+ grid-gap: 8px;
11868
+ gap: 8px; }
11869
+
11870
+ .verify-receipt-page .verify-reciept-header-icon {
11871
+ width: 28px;
11872
+ height: 28px;
11873
+ border-radius: 50%;
11874
+ background-color: #2563eb;
11875
+ display: -webkit-inline-box;
11876
+ display: -ms-inline-flexbox;
11877
+ display: inline-flex;
11878
+ -webkit-box-align: center;
11879
+ -ms-flex-align: center;
11880
+ align-items: center;
11881
+ -webkit-box-pack: center;
11882
+ -ms-flex-pack: center;
11883
+ justify-content: center;
11884
+ -ms-flex-negative: 0;
11885
+ flex-shrink: 0; }
11886
+
11887
+ .verify-receipt-page .verify-reciept-row {
11888
+ display: -webkit-box;
11889
+ display: -ms-flexbox;
11890
+ display: flex;
11891
+ -webkit-box-orient: horizontal;
11892
+ -webkit-box-direction: normal;
11893
+ -ms-flex-direction: row;
11894
+ flex-direction: row;
11895
+ -webkit-box-pack: justify;
11896
+ -ms-flex-pack: justify;
11897
+ justify-content: space-between;
11898
+ -webkit-box-align: start;
11899
+ -ms-flex-align: start;
11900
+ align-items: flex-start;
11901
+ padding: 10px 0;
11902
+ border-bottom: 1px solid #f3f4f6;
11903
+ grid-gap: 8px;
11904
+ gap: 8px;
11905
+ -ms-flex-wrap: wrap;
11906
+ flex-wrap: wrap; }
11907
+
11908
+ .verify-receipt-page .verify-reciept-row.last {
11909
+ border-bottom: none; }
11910
+
11911
+ .verify-receipt-page .verify-reciept-label {
11912
+ font-size: clamp(12px, 3vw, 14px);
11913
+ color: #6b7280;
11914
+ font-weight: 500;
11915
+ -webkit-box-flex: 1;
11916
+ -ms-flex: 1 1 40%;
11917
+ flex: 1 1 40%;
11918
+ min-width: 120px; }
11919
+
11920
+ .verify-receipt-page .verify-reciept-value {
11921
+ font-size: clamp(12px, 3vw, 14px);
11922
+ color: #1f2937;
11923
+ font-weight: 400;
11924
+ -webkit-box-flex: 1;
11925
+ -ms-flex: 1 1 50%;
11926
+ flex: 1 1 50%;
11927
+ text-align: right;
11928
+ word-break: break-word; }
11929
+
11930
+ .verify-receipt-page .verify-reciept-value.bold {
11931
+ font-weight: 600; }
11932
+
11933
+ .verify-receipt-page .verify-reciept-badge {
11934
+ font-weight: 700;
11935
+ color: #2563eb;
11936
+ font-size: clamp(13px, 3.5vw, 15px);
11937
+ background: #eff6ff;
11938
+ padding: 2px 8px;
11939
+ border-radius: 6px;
11940
+ display: inline-block; }
11941
+
11942
+ .verify-receipt-page .verify-reciept-amount {
11943
+ color: #059669;
11944
+ font-weight: 700;
11945
+ font-size: clamp(14px, 4vw, 18px); }
11946
+
11947
+ .verify-receipt-page .verify-reciept-error-card {
11948
+ padding: 20px;
11949
+ border-radius: 12px;
11950
+ margin: 16px;
11951
+ background-color: #fff5f5;
11952
+ border: 1px solid #fecaca; }
11953
+
11954
+ .verify-receipt-page .verify-reciept-error-label {
11955
+ color: #dc2626;
11956
+ font-weight: 600;
11957
+ text-align: center;
11958
+ font-size: clamp(13px, 3.5vw, 15px); }
11959
+
11960
+ .verify-receipt-page .verify-reciept-section-title {
11961
+ font-size: 11px;
11962
+ font-weight: 600;
11963
+ color: #9ca3af;
11964
+ text-transform: uppercase;
11965
+ letter-spacing: .08em;
11966
+ padding: 10px 0 4px; }
11967
+
11799
11968
  @media screen and (max-width: 320px) {
11800
11969
  .mobile-CardWrapper {
11801
11970
  min-height: 30vh; }
@@ -11849,6 +12018,12 @@ button.submit-bar:hover {
11849
12018
  -webkit-transform: rotate(1turn);
11850
12019
  transform: rotate(1turn); } }
11851
12020
 
12021
+ @media screen and (max-width: 400px) {
12022
+ .verify-receipt-page .verify-reciept-value {
12023
+ text-align: left; }
12024
+ .verify-receipt-page .citizen .main {
12025
+ padding-top: 60px; } }
12026
+
11852
12027
  @media (max-width: 768px) {
11853
12028
  .deonar-security {
11854
12029
  display: -webkit-box;
@@ -12025,7 +12200,7 @@ button.submit-bar:hover {
12025
12200
  right: 0;
12026
12201
  bottom: 0;
12027
12202
  background: rgba(0, 0, 0, 0.7);
12028
- z-index: 1000; }
12203
+ z-index: 10000; }
12029
12204
 
12030
12205
  .deonar-confirmation-content {
12031
12206
  background: #fff;