81 lines
1.4 KiB
Plaintext
81 lines
1.4 KiB
Plaintext
.header {
|
|
background-color: var(--oak-color-primary);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 120px;
|
|
|
|
.label {
|
|
align-self: flex-start;
|
|
margin-left: 36px;
|
|
font-size: small;
|
|
color: white;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.value {
|
|
font-size: x-large;
|
|
font-weight: bolder;
|
|
color: white;
|
|
|
|
.symbol {
|
|
margin-right: 6px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.step {
|
|
margin-top: 25px;
|
|
margin-bottom: 15px;
|
|
|
|
.label {
|
|
font-size: small;
|
|
}
|
|
|
|
:global {
|
|
.ant-steps-item-content {
|
|
margin-top: 0px !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.refunds {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.refundItem {
|
|
width: 223px;
|
|
margin: 12px;
|
|
padding: 8px;
|
|
font-size: small;
|
|
border: solid 0.1px var(--oak-color-info);
|
|
border-radius: 4px;
|
|
|
|
.item {
|
|
margin-top: 4px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
// align-items: center;
|
|
justify-content: space-between;
|
|
|
|
.label {
|
|
color: var(--oak-text-color-secondary);
|
|
}
|
|
|
|
.value {
|
|
max-width: 130px;
|
|
color: var(--oak-text-color-primary);
|
|
|
|
.symbol {
|
|
margin-right: 4px;
|
|
}
|
|
}
|
|
|
|
.reason {
|
|
color: var(--oak-color-error);
|
|
}
|
|
}
|
|
} |