ui-kit-ck-consultant 0.5.147 → 0.5.151
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/css/style.css +3 -0
- package/dist/index.css +110 -1
- package/dist/index.js +358 -97
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +353 -98
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/css/style.css
CHANGED
package/dist/index.css
CHANGED
@@ -62,7 +62,7 @@
|
|
62
62
|
border-radius: 15px;
|
63
63
|
}
|
64
64
|
|
65
|
-
._2YluD._22C7A{
|
65
|
+
._2YluD._22C7A {
|
66
66
|
width: 900px;
|
67
67
|
}
|
68
68
|
|
@@ -137,6 +137,11 @@
|
|
137
137
|
overflow-y: auto;
|
138
138
|
}
|
139
139
|
|
140
|
+
._Pf5Uh {
|
141
|
+
height: 100%;
|
142
|
+
overflow-y: auto;
|
143
|
+
}
|
144
|
+
|
140
145
|
@media screen and (max-width: 640px) {
|
141
146
|
._2YluD {
|
142
147
|
padding: 32px;
|
@@ -1805,6 +1810,110 @@
|
|
1805
1810
|
padding: 20px;
|
1806
1811
|
}
|
1807
1812
|
|
1813
|
+
._23a7- {
|
1814
|
+
display: flex;
|
1815
|
+
width: 100%;
|
1816
|
+
flex-direction: column;
|
1817
|
+
}
|
1818
|
+
|
1819
|
+
._3zdac {
|
1820
|
+
display: flex;
|
1821
|
+
width: 100%;
|
1822
|
+
padding-top: 5px;
|
1823
|
+
padding-bottom: 5px;
|
1824
|
+
border-radius: 15px 15px 15px 15px;
|
1825
|
+
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
|
1826
|
+
background-color: var(--white);
|
1827
|
+
margin-bottom: 20px;
|
1828
|
+
}
|
1829
|
+
|
1830
|
+
._3zdac > div:first-child {
|
1831
|
+
display: flex;
|
1832
|
+
width: 100%;
|
1833
|
+
align-items: center;
|
1834
|
+
justify-content: space-around;
|
1835
|
+
flex-wrap: wrap;
|
1836
|
+
}
|
1837
|
+
|
1838
|
+
._3zdac > div:last-child {
|
1839
|
+
display: flex;
|
1840
|
+
margin-left: auto;
|
1841
|
+
padding-right: 10px;
|
1842
|
+
}
|
1843
|
+
|
1844
|
+
._2cxzo {
|
1845
|
+
display: flex;
|
1846
|
+
width: 100%;
|
1847
|
+
}
|
1848
|
+
|
1849
|
+
._2cxzo:not(._2WKxa) {
|
1850
|
+
border-radius: 15px;
|
1851
|
+
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
|
1852
|
+
background-color: var(--white);
|
1853
|
+
}
|
1854
|
+
|
1855
|
+
._MFel7 {
|
1856
|
+
display: inline-flex;
|
1857
|
+
height: 40px;
|
1858
|
+
padding: 10px;
|
1859
|
+
margin: 5px 10px;
|
1860
|
+
color: var(--black);
|
1861
|
+
transition: 0.4s;
|
1862
|
+
cursor: pointer;
|
1863
|
+
border-radius: 10px;
|
1864
|
+
white-space: nowrap;
|
1865
|
+
flex-grow: 1;
|
1866
|
+
flex-shrink: 1;
|
1867
|
+
}
|
1868
|
+
|
1869
|
+
._MFel7 + ._MFel7 {
|
1870
|
+
margin-left: 0px;
|
1871
|
+
}
|
1872
|
+
|
1873
|
+
._MFel7._32WLP {
|
1874
|
+
background-color: var(--primary-color);
|
1875
|
+
color: var(--white);
|
1876
|
+
}
|
1877
|
+
|
1878
|
+
._MFel7._Eq4pW,
|
1879
|
+
._MFel7._Eq4pW:hover,
|
1880
|
+
._MFel7._Eq4pW:active {
|
1881
|
+
cursor: not-allowed !important;
|
1882
|
+
background-color: var(--gray) !important;
|
1883
|
+
color: var(--white) !important;
|
1884
|
+
opacity: 1 !important;
|
1885
|
+
}
|
1886
|
+
|
1887
|
+
._MFel7:not(._32WLP):hover {
|
1888
|
+
background-color: var(--primary-color);
|
1889
|
+
color: var(--white);
|
1890
|
+
opacity: 0.7;
|
1891
|
+
}
|
1892
|
+
._MFel7:not(._32WLP):active {
|
1893
|
+
background-color: var(--primary-color);
|
1894
|
+
color: var(--white);
|
1895
|
+
opacity: 0.5;
|
1896
|
+
}
|
1897
|
+
|
1898
|
+
._MFel7 > span {
|
1899
|
+
margin: auto;
|
1900
|
+
font-size: 14px;
|
1901
|
+
font-weight: bold;
|
1902
|
+
}
|
1903
|
+
|
1904
|
+
._1lUyF {
|
1905
|
+
display: none;
|
1906
|
+
width: 100%;
|
1907
|
+
}
|
1908
|
+
|
1909
|
+
._1lUyF._32WLP {
|
1910
|
+
display: block;
|
1911
|
+
}
|
1912
|
+
|
1913
|
+
._2cxzo:not(._2WKxa) ._1lUyF._32WLP {
|
1914
|
+
padding: 20px;
|
1915
|
+
}
|
1916
|
+
|
1808
1917
|
._2rooA {
|
1809
1918
|
position: relative;
|
1810
1919
|
flex-shrink: 0;
|