@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 +176 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/bmc.scss +152 -0
- package/src/components/deonar.scss +1 -1
package/package.json
CHANGED
package/src/components/bmc.scss
CHANGED
|
@@ -1946,6 +1946,148 @@ button.submit-bar:hover {
|
|
|
1946
1946
|
width: auto;
|
|
1947
1947
|
padding: 0;
|
|
1948
1948
|
}
|
|
1949
|
+
.deonar-flowchart .employee .ground-container {
|
|
1950
|
+
margin-bottom: 0px !important;
|
|
1951
|
+
}
|
|
1952
|
+
.flowchart-header {
|
|
1953
|
+
--r: 70px;
|
|
1954
|
+
|
|
1955
|
+
line-height: 3;
|
|
1956
|
+
padding-inline: 1em;
|
|
1957
|
+
border-inline: var(--r) solid #0000;
|
|
1958
|
+
border-radius: calc(2*var(--r)) calc(2*var(--r)) 0 0/var(--r);
|
|
1959
|
+
mask:
|
|
1960
|
+
radial-gradient(var(--r) at var(--r) 0,#0000 98%,#000 101%)
|
|
1961
|
+
calc(-1*var(--r)) 100%/100% var(--r) repeat-x,
|
|
1962
|
+
conic-gradient(#000 0 0) padding-box;
|
|
1963
|
+
background: #bd5532 border-box;
|
|
1964
|
+
width: fit-content;
|
|
1965
|
+
background-color: rgb(229 116 0);
|
|
1966
|
+
color: white;
|
|
1967
|
+
font-weight: 700;
|
|
1968
|
+
}
|
|
1969
|
+
.verify-receipt-page .citizen .main {
|
|
1970
|
+
width: 100%;
|
|
1971
|
+
padding-top: 82px;
|
|
1972
|
+
justify-content: center;
|
|
1973
|
+
}
|
|
1974
|
+
.verify-receipt-page .verify-reciept-main {
|
|
1975
|
+
max-width: 700px;
|
|
1976
|
+
width: 100%;
|
|
1977
|
+
padding: 12px;
|
|
1978
|
+
background-color: #f3f4f6;
|
|
1979
|
+
box-sizing: border-box;
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
.verify-receipt-page .verify-reciept-card {
|
|
1983
|
+
padding: 16px;
|
|
1984
|
+
border-radius: 12px;
|
|
1985
|
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
1986
|
+
background-color: #ffffff;
|
|
1987
|
+
width: 100%;
|
|
1988
|
+
box-sizing: border-box;
|
|
1989
|
+
overflow-x: hidden;
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
.verify-receipt-page .verify-reciept-card-header {
|
|
1993
|
+
color: #1f2937;
|
|
1994
|
+
border-bottom: 1px solid #e5e7eb;
|
|
1995
|
+
padding-bottom: 12px;
|
|
1996
|
+
margin-bottom: 16px;
|
|
1997
|
+
font-size: clamp(16px, 4vw, 20px);
|
|
1998
|
+
font-weight: 700;
|
|
1999
|
+
display: flex;
|
|
2000
|
+
align-items: center;
|
|
2001
|
+
gap: 8px;
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
.verify-receipt-page .verify-reciept-header-icon {
|
|
2005
|
+
width: 28px;
|
|
2006
|
+
height: 28px;
|
|
2007
|
+
border-radius: 50%;
|
|
2008
|
+
background-color: #2563eb;
|
|
2009
|
+
display: inline-flex;
|
|
2010
|
+
align-items: center;
|
|
2011
|
+
justify-content: center;
|
|
2012
|
+
flex-shrink: 0;
|
|
2013
|
+
}
|
|
2014
|
+
|
|
2015
|
+
.verify-receipt-page .verify-reciept-row {
|
|
2016
|
+
display: flex;
|
|
2017
|
+
flex-direction: row;
|
|
2018
|
+
justify-content: space-between;
|
|
2019
|
+
align-items: flex-start;
|
|
2020
|
+
padding: 10px 0;
|
|
2021
|
+
border-bottom: 1px solid #f3f4f6;
|
|
2022
|
+
gap: 8px;
|
|
2023
|
+
flex-wrap: wrap;
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2026
|
+
.verify-receipt-page .verify-reciept-row.last {
|
|
2027
|
+
border-bottom: none;
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
.verify-receipt-page .verify-reciept-label {
|
|
2031
|
+
font-size: clamp(12px, 3vw, 14px);
|
|
2032
|
+
color: #6b7280;
|
|
2033
|
+
font-weight: 500;
|
|
2034
|
+
flex: 1 1 40%;
|
|
2035
|
+
min-width: 120px;
|
|
2036
|
+
}
|
|
2037
|
+
|
|
2038
|
+
.verify-receipt-page .verify-reciept-value {
|
|
2039
|
+
font-size: clamp(12px, 3vw, 14px);
|
|
2040
|
+
color: #1f2937;
|
|
2041
|
+
font-weight: 400;
|
|
2042
|
+
flex: 1 1 50%;
|
|
2043
|
+
text-align: right;
|
|
2044
|
+
word-break: break-word;
|
|
2045
|
+
}
|
|
2046
|
+
|
|
2047
|
+
.verify-receipt-page .verify-reciept-value.bold {
|
|
2048
|
+
font-weight: 600;
|
|
2049
|
+
}
|
|
2050
|
+
|
|
2051
|
+
.verify-receipt-page .verify-reciept-badge {
|
|
2052
|
+
font-weight: 700;
|
|
2053
|
+
color: #2563eb;
|
|
2054
|
+
font-size: clamp(13px, 3.5vw, 15px);
|
|
2055
|
+
background: #eff6ff;
|
|
2056
|
+
padding: 2px 8px;
|
|
2057
|
+
border-radius: 6px;
|
|
2058
|
+
display: inline-block;
|
|
2059
|
+
}
|
|
2060
|
+
|
|
2061
|
+
.verify-receipt-page .verify-reciept-amount {
|
|
2062
|
+
color: #059669;
|
|
2063
|
+
font-weight: 700;
|
|
2064
|
+
font-size: clamp(14px, 4vw, 18px);
|
|
2065
|
+
}
|
|
2066
|
+
|
|
2067
|
+
.verify-receipt-page .verify-reciept-error-card {
|
|
2068
|
+
padding: 20px;
|
|
2069
|
+
border-radius: 12px;
|
|
2070
|
+
margin: 16px;
|
|
2071
|
+
background-color: #fff5f5;
|
|
2072
|
+
border: 1px solid #fecaca;
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
.verify-receipt-page .verify-reciept-error-label {
|
|
2076
|
+
color: #dc2626;
|
|
2077
|
+
font-weight: 600;
|
|
2078
|
+
text-align: center;
|
|
2079
|
+
font-size: clamp(13px, 3.5vw, 15px);
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
.verify-receipt-page .verify-reciept-section-title {
|
|
2083
|
+
font-size: 11px;
|
|
2084
|
+
font-weight: 600;
|
|
2085
|
+
color: #9ca3af;
|
|
2086
|
+
text-transform: uppercase;
|
|
2087
|
+
letter-spacing: 0.08em;
|
|
2088
|
+
padding: 10px 0 4px;
|
|
2089
|
+
}
|
|
2090
|
+
|
|
1949
2091
|
/* Extra Small Mobile Phones (up to 320px) */
|
|
1950
2092
|
@media screen and (max-width: 320px) {
|
|
1951
2093
|
.mobile-CardWrapper {
|
|
@@ -2029,3 +2171,13 @@ button.submit-bar:hover {
|
|
|
2029
2171
|
}
|
|
2030
2172
|
}
|
|
2031
2173
|
|
|
2174
|
+
|
|
2175
|
+
|
|
2176
|
+
@media screen and (max-width: 400px) {
|
|
2177
|
+
.verify-receipt-page .verify-reciept-value {
|
|
2178
|
+
text-align: left;
|
|
2179
|
+
}
|
|
2180
|
+
.verify-receipt-page .citizen .main {
|
|
2181
|
+
padding-top: 60px;
|
|
2182
|
+
}
|
|
2183
|
+
}
|