@@ -13,20 +13,6 @@ export const TextRow = styled.div`
1313 gap: 1rem;
1414` ;
1515
16- export const SubCard = styled ( BaseCard ) < { $isMobile ?: boolean } > `
17- width: 30%;
18- ${ ( props ) =>
19- props . $isMobile &&
20- css `
21- width: 100%;
22- ` }
23- background-color: var(--additional-background-color);
24- cursor: pointer;
25- box-shadow: 0px 0px 10px 0px var(--shadow-color);
26- .ant-card-body {
27- padding: 1rem 2rem;
28- }
29- ` ;
3016export const SendBody = styled ( BaseRow ) `
3117 padding-bottom: 1rem;
3218` ;
@@ -45,28 +31,16 @@ export const FormHeader = styled.span`
4531 padding-bottom: 1rem;
4632` ;
4733
48- export const SubCardHeader = styled . span `
49- font-size: 1.5rem;
50- ` ;
51-
5234export const InputHeader = styled . span `
5335 font-size: 1.5rem;
5436` ;
5537
56- export const SubCardAmount = styled . span `
57- font-size: 1.5rem;
58- ` ;
59- export const SubCardContent = styled . div `
60- font-size: 1.3rem;
61- height: 100%;
38+ export const RBFWrapper = styled . div `
6239 display: flex;
63- justify-content: space-around ;
64- flex-direction: column ;
40+ flex-direction: row ;
41+ gap: 1rem ;
6542 align-items: center;
66- text-align: center;
67- gap: 3rem;
68- padding-top: 1rem;
69- padding-bottom: 1rem;
43+ justify-content: center;
7044` ;
7145
7246export const InputWrapper = styled . div `
@@ -75,38 +49,21 @@ export const InputWrapper = styled.div`
7549 flex-direction: column;
7650 gap: 0.5rem;
7751` ;
78- export const TiersRow = styled . div `
52+
53+ export const InputHeaderWrapper = styled . div `
7954 display: flex;
8055 flex-direction: row;
8156 gap: 1rem;
82- justify-content: space-around;
8357` ;
84-
85- export const TiersCol = styled . div `
58+ export const TiersContainer = styled . div `
8659 display: flex;
8760 flex-direction: column;
8861 gap: 1rem;
89- justify-content: space-around;
9062` ;
9163export const SendFormButton = styled ( BaseButton ) `
9264 width: 100%;
9365` ;
94- export const TiersContainer = styled . div `
95- display: flex;
96- flex-direction: column;
97- gap: 1rem;
98- transition: all 0.5s ease;
99- padding: 1rem;
100- .tier-hover:hover {
101- background-color: var(--primary-color);
102- }
103- .selected {
104- border: 1px solid var(--primary-color);
105- }
106- .invalidAmount {
107- border: 1px solid var(--error-color);
108- }
109- ` ;
66+
11067export const BalanceInfo = styled . small `
11168 color: var(--subtext-color);
11269` ;
@@ -118,26 +75,24 @@ export const Recipient = styled.span`
11875export const ErrorText = styled . small `
11976 color: var(--error-color);
12077 display: flex;
78+ op
12179 flex-direction: row;
12280 align-items: center;
12381` ;
12482export const AddressText = styled . span `
12583 text-decoration: underline;
12684 color: var(--text-main-color);
12785` ;
128-
129- export const RateValueWrapper = styled . div `
86+ export const TiersRow = styled . div `
13087 display: flex;
131- flex-direction: column ;
88+ flex-direction: row ;
13289 gap: 1rem;
90+ justify-content: space-around;
13391` ;
134- export const RateValue = styled . span `
135- color: green;
136- ` ;
137- export const RBFWrapper = styled . div `
92+
93+ export const TiersCol = styled . div `
13894 display: flex;
139- flex-direction: row ;
95+ flex-direction: column ;
14096 gap: 1rem;
141- align-items: center;
142- justify-content: center;
97+ justify-content: space-around;
14398` ;
0 commit comments