Submit your leverage details
+ {alertMessage &&
{alertMessage}
}
@@ -91,6 +98,8 @@ const Form = ({ walletId, setWalletId }) => {
+
+
diff --git a/frontend/src/pages/forms/form.css b/frontend/src/pages/forms/form.css
index 4e5b1a6b..8d1a2254 100644
--- a/frontend/src/pages/forms/form.css
+++ b/frontend/src/pages/forms/form.css
@@ -87,6 +87,14 @@
background: var(--secondary-color);
}
+.token-card:has(input[type="radio"]:checked) h5 {
+ color: black;
+}
+
+.token-card:has(input[type="radio"]:checked) h5 svg path {
+ fill: black;
+}
+
/* .token-card:active {
background: var(--blue-color);
border-radius: 8px;
@@ -119,6 +127,9 @@
padding: 10px;
}
+.token-label-component svg {
+ fill: red;
+}
.form-wrapper > *{
color: white;
@@ -160,7 +171,8 @@
width: 120px;
height: 15px;
text-align: center;
- font-size: 15px; font-size: 15px;
+ font-weight: bold;
+ font-size: 11px;
border-radius: 5px 5px 0 0;
display: flex;
align-items: center;
@@ -172,12 +184,10 @@
.recommended-item {
display: flex;
align-items: flex-end !important;
- font-size: 28px !important;
+ font-size: 20px;
}
-
-
.multiplier-item label{
border: 1px solid var(--blue-color);
width: 120px;
@@ -190,6 +200,7 @@
.multiplier-item:not(.recommended-item) label {
align-items: center;
+ font-size: 21px;
}
input[type="radio"]{
@@ -207,7 +218,7 @@ input[type="radio"]{
.multiplier-item input[type="radio"]:checked + label {
border-color: var(--blue-color);
- box-shadow: 0 4px 8px var(--blue-color);
+ box-shadow: 0 4px 20px var(--blue-color);
}
input[type="number"]::-webkit-outer-spin-button,
@@ -299,4 +310,81 @@ input[type="number"].error {
height: 22px;
font-size: 15px;
}
+}
+
+.forms-gradient .card-gradient:nth-child(1){
+ position: absolute;
+ top: 240px;
+ left: -156px;
+ width: 232px;
+ height: 208px;
+ flex-shrink: 0;
+ border-radius: 2000px;
+ background: var(--gradient, linear-gradient(73deg, #74D6FD 1.13%, #E01DEE 103.45%));
+ filter: blur(111px);
+}
+
+.forms-gradient .card-gradient:nth-child(2){
+ position: absolute;
+ right: -70px;
+ bottom: -55px;
+ width: 232px;
+ height: 208px;
+ flex-shrink: 0;
+ border-radius: 2000px;
+ background: var(--gradient, linear-gradient(73deg, #74D6FD 1.13%, #E01DEE 103.45%));
+ /* Blur */
+ filter: blur(123px);
+}
+
+.form-alert{
+ display: flex;
+ align-items: center;
+}
+
+.form-alert-hex{
+ margin-left: auto;
+}
+
+.balance-container{
+ display: flex;
+ margin-bottom: 60px;
+ justify-content: space-between;
+}
+
+.balance-item{
+ display: flex;
+ flex-direction: column;
+ background-color: #74D6FD80;
+ height: 129px;
+ width: 300px;
+ align-items: center;
+ border-radius: 8px;
+ border: 0.5px solid #4e7787;
+ justify-content: center;
+ background: linear-gradient(150deg, #74D6FD80 1.13%, #0B0C1080 103.45%);
+ margin-right: 20px;
+ box-shadow: 3.75px 3.75px 9.38px 0px #99EAFF40 inset;
+}
+
+.balance-item label:nth-child(1){
+ font-size: 20px;
+ color: var(--secondary);
+ letter-spacing: 0.5px;
+}
+
+.balance-item label:nth-child(2){
+ font-size: 32px;
+ color: var(--secondary);
+}
+
+.balance-title{
+ display: flex;
+ align-items: center;
+}
+
+.balance-title svg{
+ margin-right: 5px;
+ height: 25px;
+ width: 24px ;
}
\ No newline at end of file