@pmidc/upyog-css 1.2.35-dev.1.2 → 1.2.36
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 +3 -76
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/card.scss +3 -1
- package/src/index.scss +0 -93
- package/src/pages/citizen/InboxCard.scss +1 -1
package/package.json
CHANGED
package/src/components/card.scss
CHANGED
|
@@ -81,7 +81,8 @@
|
|
|
81
81
|
color: #0f172a;
|
|
82
82
|
margin-bottom: 8px;
|
|
83
83
|
margin-top: 8px;
|
|
84
|
-
font-weight: 700;
|
|
84
|
+
font-weight: 700;
|
|
85
|
+
text-transform: uppercase;
|
|
85
86
|
letter-spacing: 0.5px;
|
|
86
87
|
width: 100%;
|
|
87
88
|
}
|
|
@@ -204,6 +205,7 @@
|
|
|
204
205
|
color: #0f172a;
|
|
205
206
|
margin-bottom: 8px;
|
|
206
207
|
font-weight: 700;
|
|
208
|
+
text-transform: uppercase;
|
|
207
209
|
letter-spacing: 0.5px;
|
|
208
210
|
}
|
|
209
211
|
|
package/src/index.scss
CHANGED
|
@@ -1771,99 +1771,6 @@ input[type="date"] {
|
|
|
1771
1771
|
margin-right: 4px;
|
|
1772
1772
|
}
|
|
1773
1773
|
|
|
1774
|
-
/* Fee History Desktop View - NOC/CLU */
|
|
1775
|
-
.custom-fix-fee-history-wrapper {
|
|
1776
|
-
margin-top: 16px;
|
|
1777
|
-
}
|
|
1778
|
-
|
|
1779
|
-
.custom-fix-fee-history-toggle {
|
|
1780
|
-
display: flex;
|
|
1781
|
-
align-items: center;
|
|
1782
|
-
cursor: pointer;
|
|
1783
|
-
padding: 12px 0;
|
|
1784
|
-
border-bottom: 1px solid #ddd;
|
|
1785
|
-
}
|
|
1786
|
-
|
|
1787
|
-
.custom-fix-fee-history-toggle-text {
|
|
1788
|
-
font-weight: bold;
|
|
1789
|
-
font-size: 16px;
|
|
1790
|
-
flex: 1;
|
|
1791
|
-
}
|
|
1792
|
-
|
|
1793
|
-
.custom-fix-fee-history-toggle-icon {
|
|
1794
|
-
font-size: 18px;
|
|
1795
|
-
font-weight: bold;
|
|
1796
|
-
}
|
|
1797
|
-
|
|
1798
|
-
.custom-fix-fee-history-table-container {
|
|
1799
|
-
overflow-x: auto;
|
|
1800
|
-
margin-top: 16px;
|
|
1801
|
-
}
|
|
1802
|
-
|
|
1803
|
-
.custom-fix-fee-history-table {
|
|
1804
|
-
width: 100%;
|
|
1805
|
-
border-collapse: collapse;
|
|
1806
|
-
min-width: 600px;
|
|
1807
|
-
}
|
|
1808
|
-
|
|
1809
|
-
.custom-fix-fee-history-table-header {
|
|
1810
|
-
padding: 8px;
|
|
1811
|
-
border: 1px solid #ddd;
|
|
1812
|
-
font-weight: bold;
|
|
1813
|
-
background-color: #1f3a9f;
|
|
1814
|
-
color: #fff;
|
|
1815
|
-
min-width: 140px;
|
|
1816
|
-
}
|
|
1817
|
-
|
|
1818
|
-
.custom-fix-fee-history-table-header-fee {
|
|
1819
|
-
padding: 8px;
|
|
1820
|
-
border: 1px solid #ddd;
|
|
1821
|
-
font-weight: bold;
|
|
1822
|
-
background-color: #1f3a9f;
|
|
1823
|
-
color: #fff;
|
|
1824
|
-
min-width: 150px;
|
|
1825
|
-
}
|
|
1826
|
-
|
|
1827
|
-
.custom-fix-fee-history-table-cell-label {
|
|
1828
|
-
padding: 8px;
|
|
1829
|
-
border: 1px solid #ddd;
|
|
1830
|
-
font-weight: bold;
|
|
1831
|
-
background-color: #f9f9f9;
|
|
1832
|
-
}
|
|
1833
|
-
|
|
1834
|
-
.custom-fix-fee-history-table-cell-value {
|
|
1835
|
-
padding: 8px;
|
|
1836
|
-
border: 1px solid #ddd;
|
|
1837
|
-
}
|
|
1838
|
-
|
|
1839
|
-
.custom-fix-fee-history-table-cell-separator {
|
|
1840
|
-
padding: 8px;
|
|
1841
|
-
border: 1px solid #ddd;
|
|
1842
|
-
font-weight: bold;
|
|
1843
|
-
background-color: #f9f9f9;
|
|
1844
|
-
border-bottom: 3px solid #999999;
|
|
1845
|
-
}
|
|
1846
|
-
|
|
1847
|
-
.custom-fix-fee-history-table-cell-separator-value {
|
|
1848
|
-
padding: 8px;
|
|
1849
|
-
border: 1px solid #ddd;
|
|
1850
|
-
border-bottom: 3px solid #999999;
|
|
1851
|
-
}
|
|
1852
|
-
|
|
1853
|
-
.custom-fix-fee-history-table-cell-separator-last {
|
|
1854
|
-
padding: 8px;
|
|
1855
|
-
border: 1px solid #ddd;
|
|
1856
|
-
font-weight: bold;
|
|
1857
|
-
background-color: #f9f9f9;
|
|
1858
|
-
border-bottom: none;
|
|
1859
|
-
}
|
|
1860
|
-
|
|
1861
|
-
.custom-fix-fee-history-table-cell-separator-value-last {
|
|
1862
|
-
padding: 8px;
|
|
1863
|
-
border: 1px solid #ddd;
|
|
1864
|
-
border-bottom: none;
|
|
1865
|
-
}
|
|
1866
|
-
|
|
1867
1774
|
|
|
1868
1775
|
.custom-fee-table-input {
|
|
1869
1776
|
width: 100%;
|