@pmidc/upyog-css 1.2.31 → 1.2.32
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 +27 -8
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/buttons.scss +2 -0
- package/src/pages/common/searchIcon.scss +14 -5
package/dist/index.css
CHANGED
|
@@ -2359,7 +2359,8 @@ body {
|
|
|
2359
2359
|
width: 100%; }
|
|
2360
2360
|
|
|
2361
2361
|
.selector-button-primary {
|
|
2362
|
-
background-color: #2947a3 !important;
|
|
2362
|
+
background-color: #2947a3 !important;
|
|
2363
|
+
width: 100%; }
|
|
2363
2364
|
.selector-button-primary:hover {
|
|
2364
2365
|
background-color: #1e3a8a !important; }
|
|
2365
2366
|
|
|
@@ -2397,7 +2398,8 @@ body {
|
|
|
2397
2398
|
justify-content: center;
|
|
2398
2399
|
height: auto;
|
|
2399
2400
|
min-height: 40px;
|
|
2400
|
-
margin: 0;
|
|
2401
|
+
margin: 0;
|
|
2402
|
+
width: 100%; }
|
|
2401
2403
|
.selector-button-border:hover {
|
|
2402
2404
|
background-color: #1e3a8a !important;
|
|
2403
2405
|
opacity: .9; }
|
|
@@ -15167,14 +15169,31 @@ body {
|
|
|
15167
15169
|
.search-icon {
|
|
15168
15170
|
position: relative;
|
|
15169
15171
|
z-index: 100;
|
|
15170
|
-
right:
|
|
15171
|
-
|
|
15172
|
-
|
|
15172
|
+
right: 8px;
|
|
15173
|
+
top: 50%;
|
|
15174
|
+
-webkit-transform: translateY(-50%);
|
|
15175
|
+
transform: translateY(-50%);
|
|
15176
|
+
cursor: pointer;
|
|
15177
|
+
display: -webkit-box;
|
|
15178
|
+
display: -ms-flexbox;
|
|
15179
|
+
display: flex;
|
|
15180
|
+
-webkit-box-align: center;
|
|
15181
|
+
-ms-flex-align: center;
|
|
15182
|
+
align-items: center;
|
|
15183
|
+
-webkit-box-pack: center;
|
|
15184
|
+
-ms-flex-pack: center;
|
|
15185
|
+
justify-content: center;
|
|
15186
|
+
padding: 8px;
|
|
15187
|
+
margin-left: -30px;
|
|
15188
|
+
margin-top: 23px; }
|
|
15173
15189
|
@media (min-width: 780px) {
|
|
15174
15190
|
.search-icon {
|
|
15175
|
-
right:
|
|
15176
|
-
|
|
15177
|
-
|
|
15191
|
+
right: 12px;
|
|
15192
|
+
top: 50%;
|
|
15193
|
+
-webkit-transform: translateY(-50%);
|
|
15194
|
+
transform: translateY(-50%);
|
|
15195
|
+
left: auto;
|
|
15196
|
+
margin-top: 23px; } }
|
|
15178
15197
|
|
|
15179
15198
|
.sanction-fee-wrapper {
|
|
15180
15199
|
width: 100%;
|