forked from astroport-fi/astroport-lbp-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswap_card_overlay.css
35 lines (27 loc) · 1019 Bytes
/
swap_card_overlay.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
.swap-card-overlay {
@apply px-12 pt-16 pb-8 flex justify-between items-center flex-col backdrop-filter backdrop-blur-sm transition-colors duration-300 ease-out;
}
.swap-card-overlay h3 {
@apply text-lg;
}
.swap-card-overlay--waitingForExtension {
background-color: var(--theme-swap-card-overlay-waitingForExtension-background-color);
}
.swap-card-overlay--pending {
background-color: var(--theme-swap-card-overlay-pending-background-color);
}
.swap-card-overlay--complete {
background-color: var(--theme-swap-card-overlay-complete-background-color);
}
.swap-card-overlay--error {
background-color: var(--theme-swap-card-overlay-error-background-color);
}
.swap-card-overlay button {
@apply text-sm rounded-lg w-full font-bold py-2;
}
.swap-card-overlay--complete button {
background-color: var(--theme-swap-card-overlay-complete-continue-button-background-color);
}
.swap-card-overlay--error button {
background-color: var(--theme-swap-card-overlay-error-continue-button-background-color);
}