@ape.swap/bonds-sdk 1.0.669 → 1.0.672
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/YourBonds.scss +10 -0
- package/package.json +1 -1
package/dist/scss/YourBonds.scss
CHANGED
|
@@ -138,14 +138,24 @@
|
|
|
138
138
|
width: 100%;
|
|
139
139
|
background-color: var(--theme-ui-colors-primaryButton);
|
|
140
140
|
color: white;
|
|
141
|
+
border: 3px solid var(--theme-ui-colors-primaryButton);
|
|
141
142
|
|
|
142
143
|
@media (min-width: 1024px) {
|
|
143
144
|
height: 26px;
|
|
144
145
|
}
|
|
145
146
|
|
|
146
147
|
&:not(:disabled):hover {
|
|
148
|
+
border: 3px solid rgba(var(--theme-ui-colors-primaryButton), 0.7);
|
|
147
149
|
background-color: var(--theme-ui-colors-primaryButtonHover);
|
|
148
150
|
}
|
|
151
|
+
|
|
152
|
+
&:disabled {
|
|
153
|
+
cursor: not-allowed;
|
|
154
|
+
background: var(--theme-ui-colors-white3);
|
|
155
|
+
color: var(--theme-ui-colors-textDisabledButton);
|
|
156
|
+
border: 3px solid transparent;
|
|
157
|
+
opacity: 0.9;
|
|
158
|
+
}
|
|
149
159
|
}
|
|
150
160
|
|
|
151
161
|
.toast {
|