@ape.swap/bonds-sdk 1.0.378 → 1.0.379
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/scss/BondModal.scss +7 -3
- package/package.json +1 -1
package/dist/scss/BondModal.scss
CHANGED
|
@@ -321,20 +321,24 @@
|
|
|
321
321
|
|
|
322
322
|
.balancerow.max {
|
|
323
323
|
align-items: center;
|
|
324
|
+
justify-content: end;
|
|
324
325
|
cursor: pointer;
|
|
325
326
|
|
|
326
327
|
Button {
|
|
327
328
|
background: var(--theme-ui-colors-primaryButton);
|
|
328
|
-
align-items: center;
|
|
329
|
-
justify-content: center;
|
|
330
329
|
height: 22px;
|
|
331
|
-
padding:
|
|
330
|
+
padding-left: 8px;
|
|
331
|
+
padding-right: 8px;
|
|
332
332
|
cursor: 'pointer';
|
|
333
333
|
font-size: 12px;
|
|
334
334
|
font-weight: 600;
|
|
335
335
|
border-radius: small;
|
|
336
336
|
margin-left: 10px;
|
|
337
337
|
transition: 'all .3s linear';
|
|
338
|
+
display: flex;
|
|
339
|
+
align-items: center;
|
|
340
|
+
justify-content: center;
|
|
341
|
+
|
|
338
342
|
&:active {
|
|
339
343
|
transform: scale(0.9);
|
|
340
344
|
}
|